User Tools

Site Tools


userspace:adobe_flash_activex

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_flash_activex [2011/10/10 12:34]
Der-Matze
userspace:adobe_flash_activex [2021/08/23 08:37] (current)
Line 16: Line 16:
 Note: settings.sol can be found in "%UserProfileDir%\Anwendungsdaten\Macromedia\Flash Player\macromedia.com\support\flashplayer\sys\" and customized via Control Panel\Flash Player. \\ Note: settings.sol can be found in "%UserProfileDir%\Anwendungsdaten\Macromedia\Flash Player\macromedia.com\support\flashplayer\sys\" and customized via Control Panel\Flash Player. \\
  
 +**Tree**
 +<code>
 +CLIENT_DATA
 +  ├ Install.ins
 +  ├ Uninstall.ins
 +  ├ SubUninstall.ins
 +  ├ Adobe Flash.png
 +  ├ install_flash_player_11_active_x_32bit.msi
 +  ├ install_flash_player_11_active_x_64bit.msi
 +  └ settings.sol
 +</code>
  
 ==== Install.ins ==== ==== Install.ins ====
Line 23: Line 34:
 [Initial] [Initial]
  
- +;Standard Text, shown during installation 
- +Message = Bitte warten, das Produkt wird installiert 
-;Standard Text, der während der Installation angezeigt wird +;Set Loglevel 
- +setLogLevel = 6 
- Message = Bitte warten, das Produkt wird installiert +;Stop when errors 
- +ExitOnError = false 
- +;Syntax Fehler are shown in a seperate window 
- +ScriptErrorMessages = on 
- +;Do not use Single-Step Mode 
- +TraceMode = off 
- +;No winst-window in foreground while batchmode 
- +StayOnTop = false
-;Loglevel einstellen +
- +
- setLogLevel = 6 +
- +
- +
- +
- +
- +
- +
- +
-;Bei Fehlern abbrechen +
- +
- ExitOnError = false +
- +
- +
- +
- +
- +
- +
- +
-;Syntax Fehler werden in einem separaten Fenster angezeigt +
- +
- ScriptErrorMessages = on +
- +
- +
- +
- +
- +
- +
- +
-;Single-Step Mode nicht verwenden +
- +
- TraceMode = off +
- +
- +
- +
- +
- +
- +
- +
-;Im Batchmode das Winst-Fenster nicht im Vordergrund anzeigen +
- +
- StayOnTop = false +
- +
- +
- +
- +
- +
- +
- +
- +
- +
  
 [Actions] [Actions]
 +;Variable for the OS
 +DefVar $OS$
 +set $OS$ = GetOS
  
 +;Variable for the OS-Subversion
 +DefVar $NTVersion$
 +set $NTVersion$ = GetNTVersion
  
 +;Variable for the OS-subversion
 +DefVar $SystemType$
 +Set $SystemType$ = GetSystemType
  
-;Variable für die Ermittlung des Betriebssystems +;Name of product (max. 12 columns
- +DefVar $ProductName$ 
- DefVar $OS$ +Set $ProductName$ = "Adobe Flash"
- +
- set $OS$ = GetOS +
- +
- +
- +
- +
- +
- +
- +
-;Variable für die Ermittlung der Betriebssystem Unterversion +
- +
- DefVar $NTVersion$ +
- +
- set $NTVersion$ = GetNTVersion +
- +
- +
- +
- +
- +
-;Variable zur Ermittlung der Systemarchitektur +
- +
- DefVar $SystemType$ +
- +
- Set $SystemType$ = GetSystemType +
- +
- +
- +
- +
- +
- +
- +
-;Name des Produkts (max. 12 Zeichen) +
- +
- DefVar $ProductName$ +
- +
- Set $ProductName$ = "Adobe Flash" +
- +
- +
- +
- +
- +
- +
- +
-;Vollständiger Produktname incl. Versionsnummer +
- +
- DefVar $ProductNameFull1$ +
- +
- set $ProductNameFull1$ = "Adobe Flash 11.0.1.152 ActiveX" +
- +
- +
- +
- +
- +
- +
- +
-;Dateiname des Produktbildes mit Erweiterung +
- +
- DefVar $ProductPicture$ +
- +
- Set $ProductPicture$ = "Adobe Flash.png" +
- +
- +
- +
- +
- +
- +
- +
-;Dateinamen der zu installierenden MSI-Pakete +
- +
- DefVar $Executable1$ +
- +
- Set $Executable1$ = "install_flash_player_11_active_x_32bit.msi" +
- +
- +
- +
- +
- +
- +
- +
- DefVar $Executable2$ +
- +
- Set $Executable2$ = "install_flash_player_11_active_x_64bit.msi" +
- +
- +
- +
- +
- +
- +
- +
-;Die Variable zur Auswertung des ExitCodes +
- +
- DefVar $ExitCode$ +
- +
- +
- +
- +
- +
- +
- +
-;Prüfen der Winst Version +
- +
- requiredWinstVersion >= "4.11" +
- +
- +
- +
- +
- +
- +
- +
-;$ProductPicture$ und $ProductName$ anzeigen +
- +
- ShowBitmap /3 "%scriptpath%\" + $ProductPicture$ $ProductName$ +
- +
- +
- +
- +
- +
- +
- +
-;Anzeigen der Installationsbenachrichtigung incl. des vollen Produktnamens +
- +
- Message "Installiere "+$ProductNameFull1$ +
- +
- +
- +
- +
- +
- +
- +
-;Freien Speicherplatz ermitteln +
- +
- if not (HasMinimumSpace ("%SYSTEMDRIVE%", "500 MB")) +
- +
- LogError "Nicht genügend Platz auf %SYSTEMDRIVE%" +
- +
- isFatalError +
- +
- endif +
- +
- +
- +
- +
- +
- +
- +
-;OS-Version ermitteln +
- +
- if ( $NTVersion$ = "Win2K" OR $NTVersion$ = "WinXP" OR $NTVersion$ = "Win NT 5.2" OR $NTVersion$ = "Windows Vista" ) +
- +
- +
- +
- +
- +
- +
- +
- if $SystemType$ = "x86 System" +
- +
- Winbatch_Install_32-Bit +
- +
- sub "%ScriptDrive%\install\check_exitcode\check_msi-exitcode.ins" +
- +
- endif +
- +
- +
- +
- +
- +
- +
- +
- if $SystemType$ = "64 Bit System" +
- +
- Winbatch_Install_64-Bit +
- +
- sub "%ScriptDrive%\install\check_exitcode\check_msi-exitcode.ins" +
- +
- endif +
- +
- +
- +
- +
- +
- +
- +
- if ( $NTVersion$ = "Win2K" OR $NTVersion$ = "WinXP" OR $NTVersion$ = "Win NT 5.2" ) +
- +
- Files_Copy_AllUsers_WinNT5x /AllNTUserProfiles +
- +
- endif +
- +
- +
- +
- +
- +
- +
- +
- if ( $NTVersion$ = "Windows Vista" ) +
- +
- Files_Copy_AllUsers_WinNT6x /AllNTUserProfiles +
- +
- endif +
- +
- +
- +
- +
- +
- +
- +
- else +
- +
- LogError "Kein kompatibles Betriebssystem installiert" +
- +
- isFatalError +
- +
- endif +
  
 +;complete name of product incl. versionno.
 +DefVar $ProductNameFull1$
 +set $ProductNameFull1$ = "Adobe Flash 11.0.1.152 ActiveX"
  
 +;filename of productpicture with extension
 +DefVar $ProductPicture$
 +Set $ProductPicture$ = "Adobe Flash.png"
  
 +;filename of MSI-package which has to be installed
 +DefVar $Executable1$
 +Set $Executable1$ = "install_flash_player_11_active_x_32bit.msi"
 +DefVar $Executable2$
 +Set $Executable2$ = "install_flash_player_11_active_x_64bit.msi"
  
 +;the variable for the ExitCode
 +DefVar $ExitCode$
  
 +;Check the winst-version
 +requiredWinstVersion >= "4.11"
  
 +;show $ProductPicture$ and $ProductName$
 +ShowBitmap /3 "%scriptpath%\" + $ProductPicture$ $ProductName$
  
 +;Show installationmessage incl. complete Productname
 +Message "Installiere "+$ProductNameFull1$
  
 +;check free diskspace
 +if not (HasMinimumSpace ("%SYSTEMDRIVE%", "500 MB"))
 +        LogError "Nicht genügend Platz auf %SYSTEMDRIVE%"
 + isFatalError
 +endif
  
 +;get OS-Version
 +if ( $NTVersion$ = "Win2K" OR $NTVersion$ = "WinXP" OR $NTVersion$ = "Win NT 5.2" OR $NTVersion$ = "Windows Vista" )
 + if $SystemType$ = "x86 System"
 + Winbatch_Install_32-Bit
 + sub "%ScriptDrive%\install\check_exitcode\check_msi-exitcode.ins"
 +endif
 +if $SystemType$ = "64 Bit System"
 + Winbatch_Install_64-Bit
 + sub "%ScriptDrive%\install\check_exitcode\check_msi-exitcode.ins"
 +endif
 +if ( $NTVersion$ = "Win2K" OR $NTVersion$ = "WinXP" OR $NTVersion$ = "Win NT 5.2" )
 + Files_Copy_AllUsers_WinNT5x /AllNTUserProfiles
 +endif
 +if ( $NTVersion$ = "Windows Vista" )
 + Files_Copy_AllUsers_WinNT6x /AllNTUserProfiles
 +endif
 +else
 + LogError "No compatible OS..."
 + isFatalError
 +endif
  
 [Winbatch_Install_32-Bit] [Winbatch_Install_32-Bit]
- +msiexec /i "%SCRIPTPATH%\$Executable1$" /qb-! reboot=reallysuppress
- +
- +
- msiexec /i "%SCRIPTPATH%\$Executable1$" /qb-! reboot=reallysuppress +
- +
- +
- +
- +
- +
  
 [Winbatch_Install_64-Bit] [Winbatch_Install_64-Bit]
- +msiexec /i "%SCRIPTPATH%\$Executable2$" /qb-! reboot=reallysuppress
- +
- +
- msiexec /i "%SCRIPTPATH%\$Executable2$" /qb-! reboot=reallysuppress +
- +
- +
- +
- +
- +
  
 [Files_Copy_AllUsers_WinNT5x] [Files_Copy_AllUsers_WinNT5x]
- 
- 
- 
 ;Konfigurationsdatei in alle Userprofile kopieren ;Konfigurationsdatei in alle Userprofile kopieren
- +copy -s "%SCRIPTPATH%\settings.sol" "%UserProfileDir%\Anwendungsdaten\Macromedia\Flash Player\macromedia.com\support\flashplayer\sys\"
- copy -s "%SCRIPTPATH%\settings.sol" "%UserProfileDir%\Anwendungsdaten\Macromedia\Flash Player\macromedia.com\support\flashplayer\sys\" +
- +
- +
- +
  
 [Files_Copy_AllUsers_WinNT6x] [Files_Copy_AllUsers_WinNT6x]
- 
- 
- 
 ;Konfigurationsdatei in alle Userprofile kopieren ;Konfigurationsdatei in alle Userprofile kopieren
- +copy -s "%SCRIPTPATH%\settings.sol" "%UserProfileDir%\AppData\Roaming\Macromedia\Flash Player\macromedia.com\support\flashplayer\sys\"
- copy -s "%SCRIPTPATH%\settings.sol" "%UserProfileDir%\AppData\Roaming\Macromedia\Flash Player\macromedia.com\support\flashplayer\sys\"+
  
 </code> </code>
Line 372: Line 138:
  
 [Initial] [Initial]
 +;Standard Text, shown during installation
 +Message = Bitte warten, das Produkt wird Deinstalliert
  
 +;Set Loglevel
 +setLogLevel = 6
  
 +;Stop when errors
 +ExitOnError = false
  
-;Standard Text, der während der Deinstallation angezeigt wird +;Syntax Fehler are shown in a seperate window 
- +ScriptErrorMessages = on
- Message = Bitte warten, das Produkt wird deinstalliert +
- +
- +
- +
- +
- +
- +
- +
-;Loglevel einstellen +
- +
- setLogLevel = 6 +
- +
- +
- +
- +
- +
- +
- +
-;Bei Fehlern abbrechen +
- +
- ExitOnError = false +
- +
- +
- +
- +
- +
- +
- +
-;Syntax Fehler werden in einem separaten Fenster angezeigt +
- +
- ScriptErrorMessages = on +
- +
- +
- +
- +
- +
- +
- +
-;Single-Step Mode nicht verwenden +
- +
- TraceMode = off +
- +
- +
- +
- +
- +
- +
- +
-;Im Batchmode das Winst-Fenster nicht im Vordergrund anzeigen +
- +
- StayOnTop = false +
- +
- +
- +
- +
- +
- +
- +
  
 +;Do not use Single-Step Mode
 +TraceMode = off
  
 +;No winst-window in foreground while batchmode
 +StayOnTop = false
  
 [Actions] [Actions]
 +;Variable for the OS
 +DefVar $OS$
 +Set $OS$ = GetOS
  
 +;Variable for the OS-subversion
 +DefVar $NTVersion$
 +Set $NTVersion$ = GetNTVersion
  
 +;Name of product (max. 12 columns)
 +DefVar $ProductName$
 +Set $ProductName$ = "Adobe Flash"
  
-;Variable für die Ermittlung des Betriebssystems +;filename of productpicture with extension 
- +DefVar $ProductPicture$ 
- DefVar $OS$ +Set $ProductPicture$ = "Adobe Flash.png"
- +
- Set $OS$ = GetOS +
- +
- +
- +
- +
- +
- +
- +
-;Variable für die Ermittlung der Betriebssystem Unterversion +
- +
- DefVar $NTVersion$ +
- +
- Set $NTVersion$ = GetNTVersion +
- +
- +
- +
- +
- +
- +
- +
-;Name des Produkts (max. 12 Zeichen) +
- +
- DefVar $ProductName$ +
- +
- Set $ProductName$ = "Adobe Flash" +
- +
- +
- +
- +
- +
- +
- +
-;Dateiname des Produktbildes mit Erweiterung +
- +
- DefVar $ProductPicture$ +
- +
- Set $ProductPicture$ = "Adobe Flash.png" +
- +
- +
- +
- +
- +
- +
- +
-;Die Variable zur Auswertung des ExitCodes +
- +
- DefVar $ExitCode$ +
- +
- +
- +
- +
- +
- +
- +
-;$ProductPicture$ und $ProductName$ anzeigen +
- +
- ShowBitmap /3 "%scriptpath%\" + $ProductPicture$ $ProductName$ +
- +
- +
- +
- +
- +
- +
- +
  
 +;the variable for the ExitCode
 +DefVar $ExitCode$
  
 +;show $ProductPicture$ and $ProductName$
 +ShowBitmap /3 "%scriptpath%\" + $ProductPicture$ $ProductName$
  
 sub "%ScriptPath%\SubUninstall.ins" sub "%ScriptPath%\SubUninstall.ins"
Line 524: Line 188:
 <code winst> <code winst>
  
-;Variable für den msiexec Aufruf zur Deinstallation +;Variable for the msiexec-call for deinstallation 
- DefVar $UninstallCommand$+DefVar $UninstallCommand$
  
 +;Variable for the current version. Will be read from registry.
 +DefVar $DisplayName$
  
 +;uninstall Adobe Flash ActiveX 10.0.45.2, if found in the registry
 +Set $DisplayName$ = GetRegistrystringvalue32("[HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{66E3BA00-6B3D-466B-96FA-6309A7F42BB0}] DisplayName")
 +if not ($DisplayName$ = "")
 + Message "Deinstalling "+$DisplayName$
 + set $UninstallCommand$ = "MsiExec.exe /x {66E3BA00-6B3D-466B-96FA-6309A7F42BB0} /qb-! REBOOT=ReallySuppress"
 + Winbatch_Uninstall
 + sub "%ScriptDrive%\install\check_exitcode\check_msi-exitcode.ins"
 +endif
  
-;Variable für die jeweilige VersionWird aus der Registry ausgelesen +;uninstall Adobe Flash ActiveX 10.1.53.64, if found in the registry 
- DefVar $DisplayName$+Set $DisplayName$ = GetRegistrystringvalue32("[HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{FFB768E4-E427-4553-BC36-A11F5E62A94D}] DisplayName"
 +if not ($DisplayName$ = ""
 + Message "Deinstalling "+$DisplayName$ 
 + set $UninstallCommand$ = "MsiExec.exe /x {FFB768E4-E427-4553-BC36-A11F5E62A94D} /qb-! REBOOT=ReallySuppress" 
 + Winbatch_Uninstall 
 + sub "%ScriptDrive%\install\check_exitcode\check_msi-exitcode.ins" 
 +endif
  
 +;uninstall Adobe Flash ActiveX 10.1.82.76, if found in the registry
 +Set $DisplayName$ = GetRegistrystringvalue32("[HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{406A89D6-09E6-4550-B370-8D376DDB56BE}] DisplayName")
 +if not ($DisplayName$ = "")
 + Message "Deinstalling "+$DisplayName$
 + set $UninstallCommand$ = "MsiExec.exe /x {406A89D6-09E6-4550-B370-8D376DDB56BE} /qb-! REBOOT=ReallySuppress"
 + Winbatch_Uninstall
 + sub "%ScriptDrive%\install\check_exitcode\check_msi-exitcode.ins"
 +endif
  
 +;uninstall Adobe Flash ActiveX 10.1.85.3, if found in the registry
 +Set $DisplayName$ = GetRegistrystringvalue32("[HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{95468B00-C081-4B27-AC96-0A2A31359E60}] DisplayName")
 +if not ($DisplayName$ = "")
 + Message "Deinstalling "+$DisplayName$
 + set $UninstallCommand$ = "MsiExec.exe /x {95468B00-C081-4B27-AC96-0A2A31359E60} /qb-! REBOOT=ReallySuppress"
 + Winbatch_Uninstall
 + sub "%ScriptDrive%\install\check_exitcode\check_msi-exitcode.ins"
 +endif
  
 +;uninstall Adobe Flash ActiveX 10.1.102.64, if found in the registry
 +Set $DisplayName$ = GetRegistrystringvalue32("[HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{148D9D03-5D23-4D4F-B5D0-BA6030C45DCF}] DisplayName")
 +if not ($DisplayName$ = "")
 + Message "Deinstalling "+$DisplayName$
 + set $UninstallCommand$ = "MsiExec.exe /x {148D9D03-5D23-4D4F-B5D0-BA6030C45DCF} /qb-! REBOOT=ReallySuppress"
 + Winbatch_Uninstall
 + sub "%ScriptDrive%\install\check_exitcode\check_msi-exitcode.ins"
 +endif
  
  
-;Adobe Flash ActiveX 10.0.45.2 deinstallieren, wenn es in der Registry gefunden wurde 
- Set $DisplayName$ = GetRegistrystringvalue32("[HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{66E3BA00-6B3D-466B-96FA-6309A7F42BB0}] DisplayName") 
- if not ($DisplayName$ = "") 
  
- Message "Deinstalliere "+$DisplayName$ +;uninstall Adobe Flash ActiveX 10.2.152.26, if found in the registry 
- set $UninstallCommand$ = "MsiExec.exe /x {66E3BA00-6B3D-466B-96FA-6309A7F42BB0} /qb-! REBOOT=ReallySuppress" +Set $DisplayName$ = GetRegistrystringvalue32("[HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{E5D03B2E-B2D4-477F-A60D-8E1969D821FA}] DisplayName"
- Winbatch_Uninstall +if not ($DisplayName$ = ""
- sub "%ScriptDrive%\install\check_exitcode\check_msi-exitcode.ins"+ Message "Deinstalling "+$DisplayName$ 
 + set $UninstallCommand$ = "MsiExec.exe /x {E5D03B2E-B2D4-477F-A60D-8E1969D821FA} /qb-! REBOOT=ReallySuppress" 
 + Winbatch_Uninstall 
 + sub "%ScriptDrive%\install\check_exitcode\check_msi-exitcode.ins" 
 +endif
  
- endif+;uninstall Adobe Flash ActiveX 10.2.153.1, if found in the registry 
 +Set $DisplayName$ = GetRegistrystringvalue32("[HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{B001064C-D061-4BAE-9031-416A838D5536}] DisplayName"
 +if not ($DisplayName$ = ""
 + Message "Deinstalling "+$DisplayName$ 
 + set $UninstallCommand$ = "MsiExec.exe /x {B001064C-D061-4BAE-9031-416A838D5536} /qb-! REBOOT=ReallySuppress" 
 + Winbatch_Uninstall 
 + sub "%ScriptDrive%\install\check_exitcode\check_msi-exitcode.ins" 
 +endif
  
 +;uninstall Adobe Flash ActiveX 10.2.159.1, if found in the registry
 +Set $DisplayName$ = GetRegistrystringvalue32("[HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{FA1D6742-0515-4A94-AD5D-F0484026E4A2}] DisplayName")
 +if not ($DisplayName$ = "")
 + Message "Deinstalling "+$DisplayName$
 + set $UninstallCommand$ = "MsiExec.exe /x {FA1D6742-0515-4A94-AD5D-F0484026E4A2} /qb-! REBOOT=ReallySuppress"
 + Winbatch_Uninstall
 + sub "%ScriptDrive%\install\check_exitcode\check_msi-exitcode.ins"
 +endif
  
 +;uninstall Adobe Flash ActiveX 10.3.181.14, if found in the registry
 +Set $DisplayName$ = GetRegistrystringvalue32("[HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{DCC90D9D-4F8D-4A06-9050-ADDB284FF9FA}] DisplayName")
 +if not ($DisplayName$ = "")
 + Message "Deinstalling "+$DisplayName$
 + set $UninstallCommand$ = "MsiExec.exe /x {DCC90D9D-4F8D-4A06-9050-ADDB284FF9FA} /qb-! REBOOT=ReallySuppress"
 + Winbatch_Uninstall
 + sub "%ScriptDrive%\install\check_exitcode\check_msi-exitcode.ins"
 +endif
  
-;Adobe Flash ActiveX 10.1.53.64 deinstallieren, wenn es in der Registry gefunden wurde 
- Set $DisplayName$ = GetRegistrystringvalue32("[HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{FFB768E4-E427-4553-BC36-A11F5E62A94D}] DisplayName") 
- if not ($DisplayName$ = "") 
  
- Message "Deinstalliere "+$DisplayName$ +;uninstall Adobe Flash ActiveX 10.3.181.23, if found in the registry 
- set $UninstallCommand$ = "MsiExec.exe /x {FFB768E4-E427-4553-BC36-A11F5E62A94D} /qb-! REBOOT=ReallySuppress" +Set $DisplayName$ = GetRegistrystringvalue32("[HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{88D881EF-0567-443A-9A84-E5AAEF29BB34}] DisplayName"
- Winbatch_Uninstall +if not ($DisplayName$ = ""
- sub "%ScriptDrive%\install\check_exitcode\check_msi-exitcode.ins"+ Message "Deinstalling "+$DisplayName$ 
 + set $UninstallCommand$ = "MsiExec.exe /x {88D881EF-0567-443A-9A84-E5AAEF29BB34} /qb-! REBOOT=ReallySuppress" 
 + Winbatch_Uninstall 
 + sub "%ScriptDrive%\install\check_exitcode\check_msi-exitcode.ins" 
 +endif
  
- endif+;uninstall Adobe Flash ActiveX 10.3.181.26, if found in the registry 
 +Set $DisplayName$ = GetRegistrystringvalue32("[HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{0483BE07-260D-4E4D-815E-F737C0A72E40}] DisplayName"
 +if not ($DisplayName$ = ""
 + Message "Deinstalling "+$DisplayName$ 
 + set $UninstallCommand$ = "MsiExec.exe /x {0483BE07-260D-4E4D-815E-F737C0A72E40} /qb-! REBOOT=ReallySuppress" 
 + Winbatch_Uninstall 
 + sub "%ScriptDrive%\install\check_exitcode\check_msi-exitcode.ins" 
 +endif
  
 +;uninstall Adobe Flash ActiveX 10.3.183.7, if found in the registry
 +Set $DisplayName$ = GetRegistrystringvalue32("[HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{DB093E0B-0934-4183-BA60-5C1ADC9F6424}] DisplayName")
 +if not ($DisplayName$ = "")
 + Message "Deinstalling "+$DisplayName$
 + set $UninstallCommand$ = "MsiExec.exe /x {DB093E0B-0934-4183-BA60-5C1ADC9F6424} /qb-! REBOOT=ReallySuppress"
 + Winbatch_Uninstall
 + sub "%ScriptDrive%\install\check_exitcode\check_msi-exitcode.ins"
 +endif
  
 +;uninstall Adobe Flash ActiveX 10.3.183.10, if found in the registry
 +Set $DisplayName$ = GetRegistrystringvalue32("[HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{E24A0015-C73F-4B57-B8DF-5EB84D2E9685}] DisplayName")
 +if not ($DisplayName$ = "")
 + Message "Deinstalling "+$DisplayName$
 + set $UninstallCommand$ = "MsiExec.exe /x {E24A0015-C73F-4B57-B8DF-5EB84D2E9685} /qb-! REBOOT=ReallySuppress"
 + Winbatch_Uninstall
 + sub "%ScriptDrive%\install\check_exitcode\check_msi-exitcode.ins"
 +endif
  
-;Adobe Flash ActiveX 10.1.82.76 deinstallieren, wenn es in der Registry gefunden wurde +;uninstall Adobe Flash ActiveX 11.0.1.152 32-Bit, if found in the registry 
- Set $DisplayName$ = GetRegistrystringvalue32("[HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{406A89D6-09E6-4550-B370-8D376DDB56BE}] DisplayName"+Set $DisplayName$ = GetRegistrystringvalue32("[HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{23D79730-EC1A-435E-83F8-AAEBFE5237B0}] DisplayName"
- if not ($DisplayName$ = ""+if not ($DisplayName$ = ""
- + Message "Deinstalling "+$DisplayName$ 
- Message "Deinstalliere "+$DisplayName$ + set $UninstallCommand$ = "MsiExec.exe /x {23D79730-EC1A-435E-83F8-AAEBFE5237B0} /qb-! REBOOT=ReallySuppress" 
- set $UninstallCommand$ = "MsiExec.exe /x {406A89D6-09E6-4550-B370-8D376DDB56BE} /qb-! REBOOT=ReallySuppress" + Winbatch_Uninstall 
- Winbatch_Uninstall + sub "%ScriptDrive%\install\check_exitcode\check_msi-exitcode.ins" 
- sub "%ScriptDrive%\install\check_exitcode\check_msi-exitcode.ins" +endif
- +
- endif +
- +
- +
- +
-;Adobe Flash ActiveX 10.1.85.3 deinstallieren, wenn es in der Registry gefunden wurde +
- Set $DisplayName$ = GetRegistrystringvalue32("[HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{95468B00-C081-4B27-AC96-0A2A31359E60}] DisplayName"+
- if not ($DisplayName$ = ""+
- +
- Message "Deinstalliere "+$DisplayName$ +
- set $UninstallCommand$ = "MsiExec.exe /x {95468B00-C081-4B27-AC96-0A2A31359E60} /qb-! REBOOT=ReallySuppress" +
- Winbatch_Uninstall +
- sub "%ScriptDrive%\install\check_exitcode\check_msi-exitcode.ins" +
- +
- endif +
- +
- +
- +
-;Adobe Flash ActiveX 10.1.102.64 deinstallieren, wenn es in der Registry gefunden wurde +
- Set $DisplayName$ = GetRegistrystringvalue32("[HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{148D9D03-5D23-4D4F-B5D0-BA6030C45DCF}] DisplayName"+
- if not ($DisplayName$ = ""+
- +
- Message "Deinstalliere "+$DisplayName$ +
- set $UninstallCommand$ = "MsiExec.exe /x {148D9D03-5D23-4D4F-B5D0-BA6030C45DCF} /qb-! REBOOT=ReallySuppress" +
- Winbatch_Uninstall +
- sub "%ScriptDrive%\install\check_exitcode\check_msi-exitcode.ins" +
- +
- endif +
- +
- +
- +
-;Adobe Flash ActiveX 10.2.152.26 deinstallieren, wenn es in der Registry gefunden wurde +
- Set $DisplayName$ = GetRegistrystringvalue32("[HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{E5D03B2E-B2D4-477F-A60D-8E1969D821FA}] DisplayName"+
- if not ($DisplayName$ = ""+
- +
- Message "Deinstalliere "+$DisplayName$ +
- set $UninstallCommand$ = "MsiExec.exe /x {E5D03B2E-B2D4-477F-A60D-8E1969D821FA} /qb-! REBOOT=ReallySuppress" +
- Winbatch_Uninstall +
- sub "%ScriptDrive%\install\check_exitcode\check_msi-exitcode.ins" +
- +
- endif +
- +
- +
- +
-;Adobe Flash ActiveX 10.2.153.1 deinstallieren, wenn es in der Registry gefunden wurde +
- Set $DisplayName$ = GetRegistrystringvalue32("[HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{B001064C-D061-4BAE-9031-416A838D5536}] DisplayName"+
- if not ($DisplayName$ = ""+
- +
- Message "Deinstalliere "+$DisplayName$ +
- set $UninstallCommand$ = "MsiExec.exe /x {B001064C-D061-4BAE-9031-416A838D5536} /qb-! REBOOT=ReallySuppress" +
- Winbatch_Uninstall +
- sub "%ScriptDrive%\install\check_exitcode\check_msi-exitcode.ins" +
- +
- endif +
- +
- +
- +
-;Adobe Flash ActiveX 10.2.159.1 deinstallieren, wenn es in der Registry gefunden wurde +
- Set $DisplayName$ = GetRegistrystringvalue32("[HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{FA1D6742-0515-4A94-AD5D-F0484026E4A2}] DisplayName"+
- if not ($DisplayName$ = ""+
- +
- Message "Deinstalliere "+$DisplayName$ +
- set $UninstallCommand$ = "MsiExec.exe /x {FA1D6742-0515-4A94-AD5D-F0484026E4A2} /qb-! REBOOT=ReallySuppress" +
- Winbatch_Uninstall +
- sub "%ScriptDrive%\install\check_exitcode\check_msi-exitcode.ins" +
- +
- endif +
- +
- +
- +
-;Adobe Flash ActiveX 10.3.181.14 deinstallieren, wenn es in der Registry gefunden wurde +
- Set $DisplayName$ = GetRegistrystringvalue32("[HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{DCC90D9D-4F8D-4A06-9050-ADDB284FF9FA}] DisplayName"+
- if not ($DisplayName$ = ""+
- +
- Message "Deinstalliere "+$DisplayName$ +
- set $UninstallCommand$ = "MsiExec.exe /x {DCC90D9D-4F8D-4A06-9050-ADDB284FF9FA} /qb-! REBOOT=ReallySuppress" +
- Winbatch_Uninstall +
- sub "%ScriptDrive%\install\check_exitcode\check_msi-exitcode.ins" +
- +
- endif +
- +
- +
- +
-;Adobe Flash ActiveX 10.3.181.23 deinstallieren, wenn es in der Registry gefunden wurde +
- Set $DisplayName$ = GetRegistrystringvalue32("[HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{88D881EF-0567-443A-9A84-E5AAEF29BB34}] DisplayName"+
- if not ($DisplayName$ = ""+
- +
- Message "Deinstalliere "+$DisplayName$ +
- set $UninstallCommand$ = "MsiExec.exe /x {88D881EF-0567-443A-9A84-E5AAEF29BB34} /qb-! REBOOT=ReallySuppress" +
- Winbatch_Uninstall +
- sub "%ScriptDrive%\install\check_exitcode\check_msi-exitcode.ins" +
- +
- endif +
- +
- +
- +
-;Adobe Flash ActiveX 10.3.181.26 deinstallieren, wenn es in der Registry gefunden wurde +
- Set $DisplayName$ = GetRegistrystringvalue32("[HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{0483BE07-260D-4E4D-815E-F737C0A72E40}] DisplayName"+
- if not ($DisplayName$ = ""+
- +
- Message "Deinstalliere "+$DisplayName$ +
- set $UninstallCommand$ = "MsiExec.exe /x {0483BE07-260D-4E4D-815E-F737C0A72E40} /qb-! REBOOT=ReallySuppress" +
- Winbatch_Uninstall +
- sub "%ScriptDrive%\install\check_exitcode\check_msi-exitcode.ins" +
- +
- endif +
- +
- +
- +
-;Adobe Flash ActiveX 10.3.183.7 deinstallieren, wenn es in der Registry gefunden wurde +
- Set $DisplayName$ = GetRegistrystringvalue32("[HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{DB093E0B-0934-4183-BA60-5C1ADC9F6424}] DisplayName"+
- if not ($DisplayName$ = ""+
- +
- Message "Deinstalliere "+$DisplayName$ +
- set $UninstallCommand$ = "MsiExec.exe /x {DB093E0B-0934-4183-BA60-5C1ADC9F6424} /qb-! REBOOT=ReallySuppress" +
- Winbatch_Uninstall +
- sub "%ScriptDrive%\install\check_exitcode\check_msi-exitcode.ins" +
- +
- endif +
- +
- +
- +
-;Adobe Flash ActiveX 10.3.183.10 deinstallieren, wenn es in der Registry gefunden wurde +
- Set $DisplayName$ = GetRegistrystringvalue32("[HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{E24A0015-C73F-4B57-B8DF-5EB84D2E9685}] DisplayName"+
- if not ($DisplayName$ = ""+
- +
- Message "Deinstalliere "+$DisplayName$ +
- set $UninstallCommand$ = "MsiExec.exe /x {E24A0015-C73F-4B57-B8DF-5EB84D2E9685} /qb-! REBOOT=ReallySuppress" +
- Winbatch_Uninstall +
- sub "%ScriptDrive%\install\check_exitcode\check_msi-exitcode.ins" +
- +
- endif +
- +
- +
- +
-;Adobe Flash ActiveX 11.0.1.152 32-Bit deinstallierenwenn es in der Registry gefunden wurde +
- Set $DisplayName$ = GetRegistrystringvalue32("[HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{23D79730-EC1A-435E-83F8-AAEBFE5237B0}] DisplayName"+
- if not ($DisplayName$ = ""+
- +
- Message "Deinstalliere "+$DisplayName$ +
- set $UninstallCommand$ = "MsiExec.exe /x {23D79730-EC1A-435E-83F8-AAEBFE5237B0} /qb-! REBOOT=ReallySuppress" +
- Winbatch_Uninstall +
- sub "%ScriptDrive%\install\check_exitcode\check_msi-exitcode.ins" +
- +
- endif +
- +
- +
- +
-;Adobe Flash ActiveX 11.0.1.152 64-Bit deinstallieren, wenn es in der Registry gefunden wurde +
- Set $DisplayName$ = GetRegistrystringvalue64("[HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{A10EE46B-C2E8-4FAB-A8F8-3E80D0662BA9}] DisplayName"+
- if not ($DisplayName$ = ""+
- +
- Message "Deinstalliere "+$DisplayName$ +
- set $UninstallCommand$ = "MsiExec.exe /x {A10EE46B-C2E8-4FAB-A8F8-3E80D0662BA9} /qb-! REBOOT=ReallySuppress" +
- Winbatch_Uninstall +
- sub "%ScriptDrive%\install\check_exitcode\check_msi-exitcode.ins" +
- +
- endif +
  
 +;uninstall Adobe Flash ActiveX 11.0.1.152 64-Bit, if found in the registry
 +Set $DisplayName$ = GetRegistrystringvalue64("[HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{A10EE46B-C2E8-4FAB-A8F8-3E80D0662BA9}] DisplayName")
 +if not ($DisplayName$ = "")
 + Message "Deinstalling "+$DisplayName$
 + set $UninstallCommand$ = "MsiExec.exe /x {A10EE46B-C2E8-4FAB-A8F8-3E80D0662BA9} /qb-! REBOOT=ReallySuppress"
 + Winbatch_Uninstall
 + sub "%ScriptDrive%\install\check_exitcode\check_msi-exitcode.ins"
 +endif
  
 if ( $NTVersion$ = "Win2K" OR $NTVersion$ = "WinXP" OR $NTVersion$ = "Win NT 5.2" ) if ( $NTVersion$ = "Win2K" OR $NTVersion$ = "WinXP" OR $NTVersion$ = "Win NT 5.2" )
  Files_Delete_AllUsers_WinNT5x /AllNTUserProfiles  Files_Delete_AllUsers_WinNT5x /AllNTUserProfiles
 endif endif
- 
- 
  
 if ( $NTVersion$ = "Windows Vista" ) if ( $NTVersion$ = "Windows Vista" )
  Files_Delete_AllUsers_WinNT6x /AllNTUserProfiles  Files_Delete_AllUsers_WinNT6x /AllNTUserProfiles
 endif endif
- 
- 
- 
- 
  
 [Winbatch_Uninstall] [Winbatch_Uninstall]
- +$UninstallCommand$
- $UninstallCommand$ +
- +
  
 [Files_Delete_AllUsers_WinNT5x] [Files_Delete_AllUsers_WinNT5x]
- +;Remove config-folder in all userprofiles 
-;Konfigurationsordner in allen Userprofilen löschen +delete -sf "%UserProfileDir%\Anwendungsdaten\Macromedia\"
- delete -sf "%UserProfileDir%\Anwendungsdaten\Macromedia\" +
- +
  
 [Files_Delete_AllUsers_WinNT6x] [Files_Delete_AllUsers_WinNT6x]
- +;Remove config-folder in all userprofiles 
-;Konfigurationsordner in allen Userprofilen löschen +delete -sf "%UserProfileDir%\AppData\Roaming\Macromedia\"
- delete -sf "%UserProfileDir%\AppData\Roaming\Macromedia\"+
  
 </code> </code>
  
userspace/adobe_flash_activex.1318250070.txt.gz · Last modified: 2021/08/23 08:37 (external edit)