59 lines
2.1 KiB
TeX
59 lines
2.1 KiB
TeX
; -*-Text-*-
|
|
|
|
DefVar $MacromedPathPlugin$
|
|
DefVar $MacromedPathActiveX$
|
|
|
|
Set $MacromedPathPlugin$ = "%System%\Macromed\Flash\NPSWF32_17_0_0_188.dll"
|
|
Set $MacromedPathActiveX$ = "%System%\Macromed\Flash\FlashUtil32_17_0_0_188_ActiveX.dll"
|
|
|
|
if FileExists($MacromedPathActiveX$)
|
|
Message "Uninstalling " + $ProductId$ + " Flash Active X..."
|
|
Winbatch_uninstall_ax
|
|
Sub_check_exitcode
|
|
endif
|
|
|
|
if FileExists($MacromedPathPlugin$)
|
|
Message "Uninstalling " + $ProductId$ + " Flash Plugin..."
|
|
Winbatch_uninstall_pl
|
|
Sub_check_exitcode
|
|
endif
|
|
|
|
[Winbatch_uninstall_ax]
|
|
; === MSI package =======================================================================================
|
|
msiexec /x "$InstallActiveX$" /quiet
|
|
|
|
[Winbatch_uninstall_pl]
|
|
; === MSI package =======================================================================================
|
|
msiexec /x "$InstallPlugin$" /quiet
|
|
|
|
|
|
[Sub_check_exitcode]
|
|
comment "Test for installation success via exit code"
|
|
set $ExitCode$ = getLastExitCode
|
|
; informations to exit codes see
|
|
; http://msdn.microsoft.com/en-us/library/aa372835(VS.85).aspx
|
|
; http://msdn.microsoft.com/en-us/library/aa368542.aspx
|
|
if ($ExitCode$ = "0")
|
|
comment "Looks good: setup program gives exitcode zero"
|
|
else
|
|
comment "Setup program gives a exitcode unequal zero: " + $ExitCode$
|
|
if ($ExitCode$ = "1605")
|
|
comment "ERROR_UNKNOWN_PRODUCT 1605 This action is only valid for products that are currently installed."
|
|
comment "Uninstall of a not installed product failed - no problem"
|
|
else
|
|
if ($ExitCode$ = "1641")
|
|
comment "looks good: setup program gives exitcode 1641"
|
|
comment "ERROR_SUCCESS_REBOOT_INITIATED 1641 The installer has initiated a restart. This message is indicative of a success."
|
|
else
|
|
if ($ExitCode$ = "3010")
|
|
comment "looks good: setup program gives exitcode 3010"
|
|
comment "ERROR_SUCCESS_REBOOT_REQUIRED 3010 A restart is required to complete the install. This message is indicative of a success."
|
|
else
|
|
logError "Fatal: Setup program gives an unknown exitcode unequal zero: " + $ExitCode$
|
|
isFatalError
|
|
endif
|
|
endif
|
|
endif
|
|
endif
|
|
|