Manual Install

This commit is contained in:
Mario Fetka 2012-07-14 20:07:20 +02:00
parent 4b6425c063
commit b4cdcc5ad3
6 changed files with 32 additions and 21 deletions

View File

@ -54,13 +54,13 @@ delete -sf "$InstallDir$\"
[Registry_uninstall] [Registry_uninstall]
; Example of deleting a registry key: ; Example of deleting a registry key:
; ;
deletekey [HKEY_LOCAL_MACHINE\Software\HighCriteria\TranscriptionBuddyPE\WinReg] deletekey [HKEY_LOCAL_MACHINE\Software\HighCriteria\TranscriptionBuddyPE]
[LinkFolder_uninstall] [LinkFolder_uninstall]
; Example of deleting a folder from AllUsers startmenu: ; Example of deleting a folder from AllUsers startmenu:
; ;
; set_basefolder common_programs set_basefolder common_programs
; delete_subfolder $ProductId$ delete_subfolder Transcription Buddy
; ;
; Example of deleting a shortcut from AllUsers desktop: ; Example of deleting a shortcut from AllUsers desktop:
; ;

View File

@ -103,40 +103,51 @@ copy "$IniCfgFile$" "$InstallDir$"
; Example of recursively copying some files into the installation directory: ; Example of recursively copying some files into the installation directory:
; ;
; copy -s "%ScriptPath%\files\*.*" "$InstallDir$" copy -s "%ScriptPath%\X86\*.*" "$InstallDir$"
copy "$UnInstallExe$" "$InstallDir$"
[Registry_install] [Registry_install]
; Example of setting some values of an registry key: ; Example of setting some values of an registry key:
; ;
openkey [HKEY_LOCAL_MACHINE\Software\HighCriteria\TranscriptionBuddyPE\WinReg] HighCriteria\TranscriptionBuddyPE\WinReg]
set "Name" = "$OrgName$" set "Name" = "$OrgName$"
set "Key" = "$LicenseKey$" set "Key" = "$LicenseKey$"
openkey [HKEY_LOCAL_MACHINE\Software\HighCriteria\TranscriptionBuddyPE\ProductVersion]
set "MajorVer" = REG_DWORD:00000004
set "MinorVer" = REG_DWORD:00000000
set "NumbBuild" = REG_DWORD:0000002D
set "CommonReg" = REG_DWORD:00000001
set "CommonSet" = REG_DWORD:00000000
set "SetAccess" = REG_DWORD:FFFFFFFF
openkey [HKEY_LOCAL_MACHINE\Software\HighCriteria\TranscriptionBuddyPE]
set "Path" = "$InstallDir$"
set "Module" = "tnpbuddy.exe"
[LinkFolder_install] [LinkFolder_install]
; Example of deleting a folder from AllUsers startmenu: ; Example of deleting a folder from AllUsers startmenu:
; ;
; set_basefolder common_programs set_basefolder common_programs
; delete_subfolder $ProductId$ delete_subfolder $ProductId$
; ;
; Example of creating an shortcut to the installed exe in AllUsers startmenu: ; Example of creating an shortcut to the installed exe in AllUsers startmenu:
; ;
; set_basefolder common_programs set_basefolder common_programs
; set_subfolder $ProductId$ set_subfolder Transcription Buddy
;
; set_link set_link
; name: $ProductId$ name: Transcription Buddy
; target: <path to the program> target: $InstallDir$\tnpbuddy.exe
; parameters: parameters:
; working_dir: $InstallDir$ working_dir: $InstallDir$
; icon_file: icon_file: $InstallDir$\tnpbuddy.exe
; icon_index: icon_index:
; end_link end_link
;
; Example of creating an shortcut to the installed exe on AllUsers desktop: ; Example of creating an shortcut to the installed exe on AllUsers desktop:
;
; set_basefolder common_desktopdirectory ; set_basefolder common_desktopdirectory
; set_subfolder "" ; set_subfolder ""
; ;

Binary file not shown.

Binary file not shown.