userspace:adobe_flash_activex_plugin_all_in_one_script
Differences
This shows you the differences between two versions of the page.
| Next revision | Previous revision | ||
| userspace:adobe_flash_activex_plugin_all_in_one_script [2012/04/20 13:38] – created DaWo | userspace:adobe_flash_activex_plugin_all_in_one_script [2021/08/23 10:37] (current) – external edit 127.0.0.1 | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| ====== Adobe Flash ActiveX & Plugin All in One Script 11.0.2.202.233 ====== | ====== Adobe Flash ActiveX & Plugin All in One Script 11.0.2.202.233 ====== | ||
| + | Script by DaWo | ||
| Used the Scripts for Adobe Flash installation by Der-Matze as the starting point. | Used the Scripts for Adobe Flash installation by Der-Matze as the starting point. | ||
| Line 16: | Line 17: | ||
| Note: settings.sol can be found in " | Note: settings.sol can be found in " | ||
| + | |||
| + | **Tree:** | ||
| + | < | ||
| + | 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 | ||
| + | ├ install_flash_player_11_plugin_32bit.msi | ||
| + | ├ install_flash_player_11_plugin_64bit.msi | ||
| + | └ settings.sol | ||
| + | </ | ||
| ==== Install.ins ==== | ==== Install.ins ==== | ||
| <code winst> | <code winst> | ||
| [Initial] | [Initial] | ||
| - | ;Standard Text, der während der Installation angezeigt wird | + | ;Standard Text, shown during installation |
| Message = Bitte warten, das Produkt wird installiert | Message = Bitte warten, das Produkt wird installiert | ||
| - | ; | + | ;Set Loglevel |
| setLogLevel = 6 | setLogLevel = 6 | ||
| - | ;Bei Fehlern abbrechen | + | ;Stop on Errors |
| ExitOnError = false | ExitOnError = false | ||
| - | ; | + | ; |
| ScriptErrorMessages = on | ScriptErrorMessages = on | ||
| - | ;Single-Step Mode nicht verwenden | + | ;Don't use single-step mode |
| TraceMode = off | TraceMode = off | ||
| - | ;Im Batchmode das Winst-Fenster nicht im Vordergrund anzeigen | + | ;Don't show winst-window in foreground while batchmode |
| StayOnTop = false | StayOnTop = false | ||
| [Actions] | [Actions] | ||
| - | ; | + | ; |
| DefVar $OS$ | DefVar $OS$ | ||
| set $OS$ = GetOS | set $OS$ = GetOS | ||
| - | ; | + | ; |
| DefVar $NTVersion$ | DefVar $NTVersion$ | ||
| set $NTVersion$ = GetNTVersion | set $NTVersion$ = GetNTVersion | ||
| - | ; | + | ; |
| DefVar $SystemType$ | DefVar $SystemType$ | ||
| Set $SystemType$ = GetSystemType | Set $SystemType$ = GetSystemType | ||
| - | ;Name des Produkts | + | ;Name of Product |
| DefVar $ProductName$ | DefVar $ProductName$ | ||
| Set $ProductName$ = "Adobe Flash" | Set $ProductName$ = "Adobe Flash" | ||
| - | ;Vollständiger Produktname | + | ;Complete Productname |
| DefVar $ProductNameFull1$ | DefVar $ProductNameFull1$ | ||
| set $ProductNameFull1$ = "Adobe Flash 11.0.2.202.233 Plugin" | set $ProductNameFull1$ = "Adobe Flash 11.0.2.202.233 Plugin" | ||
| - | ;Dateiname des Produktbildes mit Erweiterung | + | ;Filename of productpicture incl. extension |
| DefVar $ProductPicture$ | DefVar $ProductPicture$ | ||
| Set $ProductPicture$ = "Adobe Flash.png" | Set $ProductPicture$ = "Adobe Flash.png" | ||
| - | ;Selektiert, ob ActiveX | + | ;Should |
| DefVar $BrowserType$ | DefVar $BrowserType$ | ||
| DefVar $Executable1$ | DefVar $Executable1$ | ||
| DefVar $Executable2$ | DefVar $Executable2$ | ||
| Set $BrowserType$ = GetProductProperty(" | Set $BrowserType$ = GetProductProperty(" | ||
| - | ;Dateinamen der zu installierenden MSI-Pakete | + | ;Filenames of msi-packages, which have to be installed |
| if ($BrowserType$ = " | if ($BrowserType$ = " | ||
| Set $Executable1$ = " | Set $Executable1$ = " | ||
| Line 73: | Line 88: | ||
| endif | endif | ||
| - | ;Die Variable | + | ; |
| DefVar $ExitCode$ | DefVar $ExitCode$ | ||
| - | ;Prüfen der Winst Version | + | ;checking the Winst Version |
| requiredWinstVersion >= " | requiredWinstVersion >= " | ||
| - | ; | + | ; show $ProductPicture$ |
| ShowBitmap /3 " | ShowBitmap /3 " | ||
| - | ;Anzeigen der Installationsbenachrichtigung | + | ;show installationmessage |
| Message " | Message " | ||
| - | ;Freien Speicherplatz ermitteln | + | ;check free diskspace |
| if not (HasMinimumSpace (" | if not (HasMinimumSpace (" | ||
| | | ||
| Line 91: | Line 106: | ||
| endif | endif | ||
| - | ; | + | ;get OS-Version |
| if ( $NTVersion$ = " | if ( $NTVersion$ = " | ||
| if $SystemType$ = "x86 System" | if $SystemType$ = "x86 System" | ||
| Line 119: | Line 134: | ||
| [Files_Copy_AllUsers_WinNT5x] | [Files_Copy_AllUsers_WinNT5x] | ||
| - | ;Konfigurationsdatei in alle Userprofile kopieren | + | ;copy conf-file to all userprofiles |
| copy -s " | copy -s " | ||
| [Files_Copy_AllUsers_WinNT6x] | [Files_Copy_AllUsers_WinNT6x] | ||
| - | ;Konfigurationsdatei in alle Userprofile kopieren | + | ;copy conf-file to all userprofiles |
| copy -s " | copy -s " | ||
| </ | </ | ||
| Line 177: | Line 192: | ||
| </ | </ | ||
| - | ==== Uninstall.ins ==== | + | ==== SubUninstall.ins ==== |
| <code winst> | <code winst> | ||
| - | ; | + | ; |
| DefVar $UninstallCommand$ | DefVar $UninstallCommand$ | ||
| - | ; | + | ; |
| DefVar $DisplayName$ | DefVar $DisplayName$ | ||
| - | ;Adobe Flash ActiveX 11.0.2.202 64-Bit | + | ;uninstall |
| Set $DisplayName$ = GetRegistrystringvalue64(" | Set $DisplayName$ = GetRegistrystringvalue64(" | ||
| if not ($DisplayName$ = "" | if not ($DisplayName$ = "" | ||
| Line 192: | Line 207: | ||
| endif | endif | ||
| - | ;Adobe Flash Plugin 11.0.2.202 64-Bit | + | ;uninstall |
| Set $DisplayName$ = GetRegistrystringvalue64(" | Set $DisplayName$ = GetRegistrystringvalue64(" | ||
| if not ($DisplayName$ = "" | if not ($DisplayName$ = "" | ||
| Line 198: | Line 213: | ||
| endif | endif | ||
| - | ;Adobe Flash Plugin 11.0.2.202 | + | ;uninstall |
| Set $DisplayName$ = GetRegistrystringvalue64(" | Set $DisplayName$ = GetRegistrystringvalue64(" | ||
| if not ($DisplayName$ = "" | if not ($DisplayName$ = "" | ||
| Line 204: | Line 219: | ||
| endif | endif | ||
| - | ;Adobe Flash Active X 11.0.2.202 32-Bit | + | ;uninstall |
| Set $DisplayName$ = GetRegistrystringvalue64(" | Set $DisplayName$ = GetRegistrystringvalue64(" | ||
| if not ($DisplayName$ = "" | if not ($DisplayName$ = "" | ||
userspace/adobe_flash_activex_plugin_all_in_one_script.1334921930.txt.gz · Last modified: (external edit)
