DefVar $reboot$ Set $reboot$ = "false" if ($sereby_dotnet4.5$ = "reinstall") Winbatch_dotnet4.5_uninstall opsiservicecall_dotnet4.5_uninstall Set $reboot$ = "true" endif ; a reboot is requred after the .net cleanup so that further uninstalls can work if ($reboot$ = "true") comment "uninstall done now force Reboot" ExitWindows /ImmediateReboot endif if ($sereby_msjsharp$ = "reinstall") Dosbatch_msjsharp_uninstall opsiservicecall_msjsharp_uninstall Set $reboot$ = "true" endif if ($sereby_msfsharp$ = "reinstall") Dosbatch_msfsharp_uninstall opsiservicecall_msfsharp_uninstall Set $reboot$ = "true" endif if ($sereby_silver$ = "reinstall") Dosbatch_silver_uninstall opsiservicecall_silver_uninstall Set $reboot$ = "true" endif if ($sereby_jre7$ = "reinstall") Dosbatch_jre7_uninstall opsiservicecall_jre7_uninstall Set $reboot$ = "true" endif if ($sereby_jre8$ = "reinstall") Dosbatch_jre8_uninstall opsiservicecall_jre8_uninstall Set $reboot$ = "true" endif if ($sereby_AdobeShock$ = "reinstall") Dosbatch_AdobeShock_uninstall opsiservicecall_AdobeShock_uninstall Set $reboot$ = "true" endif if ($sereby_basicruntimes$ = "reinstall") Dosbatch_basicruntimes_uninstall opsiservicecall_basicruntimes_uninstall Set $reboot$ = "true" endif if ($sereby_msdx9$ = "reinstall") Dosbatch_msdx9_uninstall opsiservicecall_msdx9_uninstall Set $reboot$ = "true" endif if ($sereby_msvc$ = "reinstall") Dosbatch_msvc_uninstall opsiservicecall_msvc_uninstall Set $reboot$ = "true" endif if ($sereby_AdobeFlash$ = "reinstall") Dosbatch_AdobeFlash_uninstall opsiservicecall_AdobeFlash_uninstall Set $reboot$ = "true" endif if ($sereby_AdobeAir$ = "reinstall") Dosbatch_AdobeAir_uninstall opsiservicecall_AdobeAir_uninstall Set $reboot$ = "true" endif ; and the final reboot after the uninstall is done if ($reboot$ = "true") comment "uninstall done now force Reboot" ExitWindows /ImmediateReboot endif [Winbatch_dotnet1.1_uninstall] %ScriptPath%\UnInstall\NET\cleanup_tool.exe /q:a /c:"cleanup.exe /p .NET Framework 1.0 /u" %ScriptPath%\UnInstall\NET\cleanup_tool.exe /q:a /c:"cleanup.exe /p .NET Framework 1.1 /u" [opsiservicecall_dotnet1.1_uninstall] "method": "setProductProperty" "params": [ "$ProductId$", "sereby_dotnet1.1", "install", "%opsiserviceUser%" ] [Winbatch_dotnet2.0_uninstall] %ScriptPath%\UnInstall\NET\cleanup_tool.exe /q:a /c:"cleanup.exe /p .NET Framework 2.0 /u" [opsiservicecall_dotnet2.0_uninstall] "method": "setProductProperty" "params": [ "$ProductId$", "sereby_dotnet2.0", "install", "%opsiserviceUser%" ] [Winbatch_dotnet3.0_uninstall] %ScriptPath%\UnInstall\NET\cleanup_tool.exe /q:a /c:"cleanup.exe /p .NET Framework 3.0 /u" [opsiservicecall_dotnet3.0_uninstall] "method": "setProductProperty" "params": [ "$ProductId$", "sereby_dotnet3.0", "install", "%opsiserviceUser%" ] [Winbatch_dotnet3.5_uninstall] %ScriptPath%\UnInstall\NET\cleanup_tool.exe /q:a /c:"cleanup.exe /p .NET Framework 3.5 /u" [opsiservicecall_dotnet3.5_uninstall] "method": "setProductProperty" "params": [ "$ProductId$", "sereby_dotnet3.5", "install", "%opsiserviceUser%" ] [Winbatch_dotnet4.0_uninstall] %ScriptPath%\UnInstall\NET\cleanup_tool.exe /q:a /c:"cleanup.exe /p .NET Framework 4.0 /u" [opsiservicecall_dotnet4.0_uninstall] "method": "setProductProperty" "params": [ "$ProductId$", "sereby_dotnet4.0", "install", "%opsiserviceUser%" ] [Winbatch_dotnet4.5_uninstall] %ScriptPath%\UnInstall\NET\cleanup_tool.exe /q:a /c:"cleanup.exe /p .NET Framework 4.5 /u" [opsiservicecall_dotnet4.5_uninstall] "method": "setProductProperty" "params": [ "$ProductId$", "sereby_dotnet4.5", "install", "%opsiserviceUser%" ] [Dosbatch_msjsharp_uninstall] [opsiservicecall_msjsharp_uninstall] "method": "setProductProperty" "params": [ "$ProductId$", "sereby_msjsharp", "install", "%opsiserviceUser%" ] [Dosbatch_msfsharp_uninstall] [opsiservicecall_msfsharp_uninstall] "method": "setProductProperty" "params": [ "$ProductId$", "sereby_msfsharp", "install", "%opsiserviceUser%" ] [Dosbatch_silver_uninstall] ; wmic product where caption='Microsoft Silverlight' call uninstall ;"%ScriptPath%\UnInstall\Package\Silverlight\CleanSilverlight.cmd" wmic /INTERACTIVE:OFF product where name="Microsoft Silverlight" call uninstall [opsiservicecall_silver_uninstall] "method": "setProductProperty" "params": [ "$ProductId$", "sereby_silver", "install", "%opsiserviceUser%" ] [DosBatch_jre7_uninstall] @echo off rem copy "%ScriptPath%\UnInstall\Packages\JRE\JavaRa.*" "$LogDir$\" rem $LogDir$\JavaRa.exe /SILENT /PURGE /UPDATEDEFS cscript /nologo "%ScriptPath%\UnInstall\Packages\JRE\JavaUninstallScript.vbs" /keeponly [DosBatch_jre8_uninstall] @echo off rem copy "%ScriptPath%\UnInstall\Packages\JRE\JavaRa.*" "$LogDir$\" rem $LogDir$\JavaRa.exe /SILENT /PURGE /UPDATEDEFS cscript /nologo "%ScriptPath%\UnInstall\Packages\JRE\JavaUninstallScript.vbs" /keeponly [opsiservicecall_jre7_uninstall] "method": "setProductProperty" "params": [ "$ProductId$", "sereby_jre7", "install", "%opsiserviceUser%" ] [opsiservicecall_jre8_uninstall] "method": "setProductProperty" "params": [ "$ProductId$", "sereby_jre8", "install", "%opsiserviceUser%" ] [Dosbatch_AdobeShock_uninstall] "%ScriptPath%\UnInstall\Packages\Shockwave\uninstall_shock_player.exe" /s wmic /INTERACTIVE:OFF product where name="Adobe Shockwave Player 12.0" call uninstall [opsiservicecall_AdobeShock_uninstall] "method": "setProductProperty" "params": [ "$ProductId$", "sereby_adobeshock", "install", "%opsiserviceUser%" ] [Dosbatch_basicruntimes_uninstall] wmic /INTERACTIVE:OFF product where name="Allgemeine Runtime Files (x86)" call uninstall [opsiservicecall_basicruntimes_uninstall] "method": "setProductProperty" "params": [ "$ProductId$", "sereby_basicruntimes", "install", "%opsiserviceUser%" ] [Dosbatch_msdx9_uninstall] [opsiservicecall_msdx9_uninstall] "method": "setProductProperty" "params": [ "$ProductId$", "sereby_msdx9", "install", "%opsiserviceUser%" ] [Dosbatch_msdxm_uninstall] [opsiservicecall_msdxm_uninstall] "method": "setProductProperty" "params": [ "$ProductId$", "sereby_msdxm", "install", "%opsiserviceUser%" ] [Dosbatch_msvc_uninstall] [opsiservicecall_msvc_uninstall] "method": "setProductProperty" "params": [ "$ProductId$", "sereby_msvc", "install", "%opsiserviceUser%" ] [Dosbatch_AdobeFlash_uninstall] $UninstallFlashExe$ -uninstall [opsiservicecall_AdobeFlash_uninstall] "method": "setProductProperty" "params": [ "$ProductId$", "sereby_adobeflash", "install", "%opsiserviceUser%" ] [Dosbatch_AdobeAir_uninstall] wmic /INTERACTIVE:OFF product where name="Adobe AIR" call uninstall [opsiservicecall_AdobeAir_uninstall] "method": "setProductProperty" "params": [ "$ProductId$", "sereby_adobeair", "install", "%opsiserviceUser%" ] ; windows xp dotnet bug uninstall ; uninstall all languages and then remove .net [Winbatch_uninstall_msi_net35_deu_32] msiexec /x {052FDD78-A6EA-3187-8386-C82F4CA3A929} /qb! REBOOT=ReallySuppress [Winbatch_uninstall_msi_net30_deu_32] msiexec /x {C2C284D2-6BD7-3B34-B0C5-B2CAED168DF7} /qb! REBOOT=ReallySuppress [Winbatch_uninstall_msi_net20_deu_32] msiexec /x {C314CE45-3392-3B73-B4E1-139CD41CA933} /qb! REBOOT=ReallySuppress [Winbatch_uninstall_msi_net11_deu_32] msiexec /x {E78BFA60-5393-4C38-82AB-E8019E464EB4} /qb! REBOOT=ReallySuppress [Winbatch_uninstall_msi_net40_extended_deu_32] msiexec /x {C911A0C2-2236-3164-AA47-F2566C01AE5E} /qb! REBOOT=ReallySuppress [Winbatch_uninstall_msi_net40_client_deu_32] msiexec /x {F750C986-5310-3A5A-95F8-4EC71C8AC01C} /qb! REBOOT=ReallySuppress