User Tools

Site Tools


userspace:adobe_reader_11.0.06

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
userspace:adobe_reader_11.0.06 [2014/04/15 13:02]
opsi.simi [Uninstall.ins]
userspace:adobe_reader_11.0.06 [2021/08/23 08:37] (current)
Line 189: Line 189:
 </code> </code>
  
 +==== delsub.ins ====
 +
 +<code winst>
 +
 +;Variable for msiexec-call of deinstallation
 +DefVar $UninstallCommand$
 + 
 + 
 + 
 +;Variable for the diffrent versions gotten from the registry
 +DefVar $DisplayName$
 + 
 +;Deinstalling Adobe Reader 9.3.1 - 9.3.4, if found in the Registry
 +Set $DisplayName$ = GetRegistrystringvalue32("[HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{AC76BA86-7AD7-1031-7B44-A93000000001}] DisplayName")
 +if not ($DisplayName$ = "")
 + Message "Deinstalliere "+$DisplayName$
 + set $UninstallCommand$ = "MsiExec.exe /x {AC76BA86-7AD7-1031-7B44-A93000000001} /qb-! REBOOT=ReallySuppress"
 + Winbatch_Uninstall
 + sub "%ScriptDrive%\adobe\CLIENT_DATA\check_msi-exitcode.ins"
 +endif
 + 
 +;Deinstalling Adobe Reader 9.4.0, if found in the Registry
 +Set $DisplayName$ = GetRegistrystringvalue32("[HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{AC76BA86-7AD7-1031-7B44-A94000000001}] DisplayName")
 +if not ($DisplayName$ = "")
 + Message "Deinstalliere "+$DisplayName$
 + set $UninstallCommand$ = "MsiExec.exe /x {AC76BA86-7AD7-1031-7B44-A94000000001} /qb-! REBOOT=ReallySuppress"
 + Winbatch_Uninstall
 + sub "%ScriptDrive%\adobe\CLIENT_DATA\check_msi-exitcode.ins"
 +endif
 + 
 +;Deinstalling Adobe Reader 10.0.x, if found in the Registry
 +Set $DisplayName$ = GetRegistrystringvalue32("[HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{AC76BA86-7AD7-1031-7B44-AA0000000001}] DisplayName")
 +if not ($DisplayName$ = "")
 + Message "Deinstalliere "+$DisplayName$
 + set $UninstallCommand$ = "MsiExec.exe /x {AC76BA86-7AD7-1031-7B44-AA0000000001} /qb-! REBOOT=ReallySuppress"
 + Winbatch_Uninstall
 + sub "%ScriptDrive%\adobe\CLIENT_DATA\check_msi-exitcode.ins"
 +endif
 + 
 +;Deinstalling Adobe Reader 10.1.x, if found in the Registry
 +Set $DisplayName$ = GetRegistrystringvalue32("[HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{AC76BA86-7AD7-1031-7B44-AA1000000001}] DisplayName")
 + if not ($DisplayName$ = "")
 + Message "Deinstalliere "+$DisplayName$
 + set $UninstallCommand$ = "MsiExec.exe /x {AC76BA86-7AD7-1031-7B44-AA1000000001} /qb-! REBOOT=ReallySuppress"
 + Winbatch_Uninstall
 + sub "%ScriptDrive%\adobe\CLIENT_DATA\check_msi-exitcode.ins"
 +endif
 +
 +;Deinstalling Adobe Reader 11.0.x, if found in the Registry
 +Set $DisplayName$ = GetRegistrystringvalue32("[HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{AC76BA86-7AD7-1031-7B44-AB0000000001}] DisplayName")
 + if not ($DisplayName$ = "")
 + Message "Deinstalliere "+$DisplayName$
 + set $UninstallCommand$ = "MsiExec.exe /x {AC76BA86-7AD7-1031-7B44-AB0000000001} /qb-! REBOOT=ReallySuppress"
 + Winbatch_Uninstall
 + sub "%ScriptDrive%\adobe\CLIENT_DATA\check_msi-exitcode.ins"
 +endif
 + 
 +Linkfolder_Custom
 + 
 +[Winbatch_Uninstall]
 +$UninstallCommand$
 + 
 +[Linkfolder_Custom]
 +;Delete Startmenu-Link
 +Set_basefolder common_programs
 +Set_subfolder ""
 +delete_element "$ProductName$"
 +
 +</code>
userspace/adobe_reader_11.0.06.1397566958.txt.gz ยท Last modified: 2021/08/23 08:37 (external edit)