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