correct uninstall

This commit is contained in:
Mario Fetka 2011-06-27 19:31:18 +02:00
parent 1299954d6c
commit 2172b8a618
2 changed files with 5 additions and 5 deletions

View File

@ -5,10 +5,10 @@
Set $MsiId32$ = '{XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX}' Set $MsiId32$ = '{XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX}'
Set $UninstallProgram32$ = $InstallDir32$ + "\Uninstall.exe" Set $UninstallProgram32$ = $InstallDir32$ + "\unins000.exe"
Set $MsiId64$ = '{23170F69-40C1-2702-0920-000001000000}' Set $MsiId64$ = '{23170F69-40C1-2702-0920-000001000000}'
Set $UninstallProgram32$ = $InstallDir64$ + "\Uninstall.exe" Set $UninstallProgram32$ = $InstallDir64$ + "\unins000.exe"
if (($INST_SystemType$ = "x86 System") and ($INST_architecture$ = "system specific")) or ($INST_architecture$ = "both") or ($INST_architecture$ = "32 only") if (($INST_SystemType$ = "x86 System") and ($INST_architecture$ = "system specific")) or ($INST_architecture$ = "both") or ($INST_architecture$ = "32 only")
Message "Uninstalling " + $ProductId$ + " 32 Bit..." Message "Uninstalling " + $ProductId$ + " 32 Bit..."
@ -59,7 +59,7 @@ LinkFolder_uninstall
; Choose one of the following examples as basis for program uninstall ; Choose one of the following examples as basis for program uninstall
; ;
; === Nullsoft Scriptable Install System ================================================================ ; === Nullsoft Scriptable Install System ================================================================
"$UninstallProgram32$" /S "$UninstallProgram32$" /VERYSILENT
[Winbatch_uninstall_msi_32] [Winbatch_uninstall_msi_32]
@ -74,7 +74,7 @@ msiexec /x $MsiId32$ /qb! REBOOT=ReallySuppress
; Choose one of the following examples as basis for program uninstall ; Choose one of the following examples as basis for program uninstall
; ;
; === Nullsoft Scriptable Install System ================================================================ ; === Nullsoft Scriptable Install System ================================================================
"$UninstallProgram64$" /S "$UninstallProgram64$" /VERYSILENT
[Winbatch_uninstall_msi_64] [Winbatch_uninstall_msi_64]

View File

@ -1,7 +1,7 @@
#!/bin/sh #!/bin/sh
PN="taskbarshuffle" PN="taskbarshuffle"
VERSION="2.5" VERSION="2.5"
RELEASE="1" RELEASE="2"
PRIORITY="0" PRIORITY="0"
ADVICE="" ADVICE=""
TYPE="public" TYPE="public"