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]
; Example of deleting a registry key:
;
deletekey [HKEY_LOCAL_MACHINE\Software\HighCriteria\TranscriptionBuddyPE\WinReg]
deletekey [HKEY_LOCAL_MACHINE\Software\HighCriteria\TranscriptionBuddyPE]
[LinkFolder_uninstall]
; Example of deleting a folder from AllUsers startmenu:
;
; set_basefolder common_programs
; delete_subfolder $ProductId$
set_basefolder common_programs
delete_subfolder Transcription Buddy
;
; 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:
;
; copy -s "%ScriptPath%\files\*.*" "$InstallDir$"
copy "$UnInstallExe$" "$InstallDir$"
copy -s "%ScriptPath%\X86\*.*" "$InstallDir$"
[Registry_install]
; Example of setting some values of an registry key:
;
openkey [HKEY_LOCAL_MACHINE\Software\HighCriteria\TranscriptionBuddyPE\WinReg]
HighCriteria\TranscriptionBuddyPE\WinReg]
set "Name" = "$OrgName$"
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]
; Example of deleting a folder from AllUsers startmenu:
;
; set_basefolder common_programs
; delete_subfolder $ProductId$
set_basefolder common_programs
delete_subfolder $ProductId$
;
; Example of creating an shortcut to the installed exe in AllUsers startmenu:
;
; set_basefolder common_programs
; set_subfolder $ProductId$
;
; set_link
; name: $ProductId$
; target: <path to the program>
; parameters:
; working_dir: $InstallDir$
; icon_file:
; icon_index:
; end_link
;
set_basefolder common_programs
set_subfolder Transcription Buddy
set_link
name: Transcription Buddy
target: $InstallDir$\tnpbuddy.exe
parameters:
working_dir: $InstallDir$
icon_file: $InstallDir$\tnpbuddy.exe
icon_index:
end_link
; Example of creating an shortcut to the installed exe on AllUsers desktop:
;
; set_basefolder common_desktopdirectory
; set_subfolder ""
;

Binary file not shown.

Binary file not shown.