This commit is contained in:
Mario Fetka 2015-07-30 14:22:13 +02:00
parent 3ae8cc181a
commit 93a628ac40
2 changed files with 8 additions and 8 deletions

View File

@ -80,26 +80,26 @@ if $Reboot$="1"
endif endif
[Winbatch_uninstall_old_32] [Winbatch_uninstall_old_32]
"$UninstallProgramOld32$" /x /s "$UninstallProgramOld32$" /s /u
[Winbatch_uninstall_32] [Winbatch_uninstall_32]
"$UninstallProgram32$" /x /s "$UninstallProgram32$" /s /u
[Files_uninstall_32] [Files_uninstall_32]
; Example for recursively deleting the installation directory (don't forget the trailing backslash): ; Example for recursively deleting the installation directory (don't forget the trailing backslash):
; ;
delete -sf "$InstallDir32$\" ; delete -sf "$InstallDir32$\"
[Winbatch_uninstall_old_64] [Winbatch_uninstall_old_64]
"$UninstallProgramOld64$" /x /s "$UninstallProgramOld64$" /s /u
[Winbatch_uninstall_64] [Winbatch_uninstall_64]
"$UninstallProgram64$" /x /s "$UninstallProgram64$" /s /u
[Files_uninstall_64] [Files_uninstall_64]
; Example for recursively deleting the installation directory: ; Example for recursively deleting the installation directory:
; ;
del -sf "$InstallDir64$\" ; del -sf "$InstallDir64$\"
[Registry_uninstall] [Registry_uninstall]
; Example of deleting a registry key: ; Example of deleting a registry key:

View File

@ -101,7 +101,7 @@ else
endif endif
[Winbatch_install_32] [Winbatch_install_32]
"$Install32Exe$" /s /runwgacheck "$Install32Exe$" /s /o /runwgacheck
[Files_install_32] [Files_install_32]
; copy the ini file to the InstallDir ; copy the ini file to the InstallDir
@ -112,7 +112,7 @@ copy "$IniCfgFile$" "$InstallDir32$"
; copy -s "%ScriptPath%\files\*.*" "$InstallDir32$" ; copy -s "%ScriptPath%\files\*.*" "$InstallDir32$"
[Winbatch_install_64] [Winbatch_install_64]
"$Install64Exe$" /s /runwgacheck "$Install64Exe$" /s /o /runwgacheck
[Files_install_64] [Files_install_64]
; copy the ini file to the InstallDir ; copy the ini file to the InstallDir