Fehler: Error 2753. The file 'swhelper_1213153.exe' is not marked for installation.
Lösung: In der Registry unter HKEY_CLASSES_ROOT\Installer\Products die Subkeys durchsuchen und alle Keys, die mit Shockwave Player zu tun haben löschen.
Folgende Keys habe ich bei mir gelöscht:
[HKEY_CLASSES_ROOT\Installer\Products\95DDD5570969A1F4EBC93DB9CDAF779C] gehört zu sw_lic_full_installer_12.1.3.153.msi
[HKEY_CLASSES_ROOT\Installer\Products\AA520996E5742F54C9B9A984C9DAC201] gehört zu sw_lic_full_installer_12.1.9.159.msi
Nun funktioniert die MSI Installation wieder.
Shockwave Player uninstall Tool: http://fpdownload.macromedia.com/get/shockwave/uninstall/win/sw_uninstaller.exe
oder PS Script:
Try { $Keys=Get-ChildItem HKCR:\Installer -Recurse -ErrorAction Stop | Get-ItemProperty -name ProductName -ErrorAction SilentlyContinue } Catch { New-PSDrive -Name HKCR -PSProvider registry -Root HKEY_CLASSES_ROOT -ErrorAction SilentlyContinue | Out-Null $Keys=Get-ChildItem HKCR:\Installer -Recurse | Get-ItemProperty -name ProductName -ErrorAction SilentlyContinue } Finally { foreach ($Key in $Keys) { if ($Key.ProductName -like "Adobe Shockwave Player 12.1") { Remove-Item $Key.PSPath -Force -Recurse } } } |