OS = W2K3
Programm = Adobe Reader 8.1
Prob = Installation per MSI über GPO
Hallo,
in einem anderen thread habe ich bereits einen Workflow zur MSI-Install des Adobe Reader gefunden, der jedoch hier nicht klappt. Vielleicht erkennt jemand meinen Fehler:
1. Adobe Reader-exe Download
2. Install (bis im Verzeichnis C:\Dokumente und Einstellungen\Administrator\Lokale Einstellungen\Temp\Adobe Reader 8 -- die Installationsdateien entpackt wurden und die Adobe MSI-Datei auftaucht)
3. Alle Installationsdateien in meinen zentralen Applikationsordner kopiert
4. GPO bearbeitet und auf die Adobe Reader 8.1-MSI verwiesen (AcroRead.msi 3.526 KB)
--> Die Clients erkennen beim Neustart die MSI und melden die Installation von Adobe Reader, jedoch bricht der Installationsversuch erfolglos ab.
Hol Dir bei Adobe den Customize Wizard 8 - damit dann einfach ein MST erstellen und gut ist es ...
Seit kurzem liegen auf dem Adobe FTP Server endlich die Sprach/Fontpakete für den Reader 8 ... die lassen sich ebenso ohne Probleme via GPO ausrollen (letzte Woche erst im Unternehmen gemacht
CLI script to deploy Acrobat Reader v8, without messing with MSI:s, MST:s and other things. Deployable over AD/GPO startup script.
1. Get the full 20MB installer by choosing to download for Windows Server 2003 from here. Other versions gets you the 500k downloader package which is useless. No yahoo-toolbar or any other addons included in this full package AFAIK.
2. Create cmd-file and paste stuff between ---'s into it. Change path to your admin-install share as appropriate:
---
"\\domain\dfs\MSI\Adobe Reader v8.0\AdbeRdr80_en_US.exe" /sPB /rs ALLUSERS=2 EULA_ACCEPT=YES SUPPRESS_APP_LAUNCH=YES /msi"/quiet"
if exist "%allusersprofile%\Desktop\Adobe Reader 8.lnk" goto delete else registry
:delete
del /F /Q "%allusersprofile%\Desktop\Adobe Reader 8.lnk"
:registry
rem Add Lockdown-settings
REG ADD "HKLM\SOFTWARE\Policies\Adobe\Acrobat Reader\8.0\FeatureLockdown" /v bUpdater /d 0 /t REG_DWORD /f
REG ADD "HKLM\SOFTWARE\Policies\Adobe\Acrobat Reader\8.0\FeatureLockdown" /v bShowEbookMenu /d 0 /t REG_DWORD /f
REG ADD "HKLM\SOFTWARE\Policies\Adobe\Acrobat Reader\8.0\FeatureLockdown" /v bPurchaseAcro /d 0 /t REG_DWORD /f
REG ADD "HKLM\SOFTWARE\Policies\Adobe\Acrobat Reader\8.0\FeatureLockdown" /v bCreatePDFOnline /d 0 /t REG_DWORD /f
REG ADD "HKLM\SOFTWARE\Policies\Adobe\Acrobat Reader\8.0\FeatureLockdown" /v bBrowserIntegration /d 0 /t REG_DWORD /f
REG ADD "HKLM\SOFTWARE\Adobe\Acrobat Reader\8.0\AdobeViewer" /v EULA /d 1 /t REG_DWORD /f
REG ADD "HKLM\SOFTWARE\Adobe\Acrobat Reader\8.0\AdobeViewer" /v Launched /d 1 /t REG_DWORD /f
REG ADD "HKLM\SOFTWARE\Adobe\Acrobat Reader\8.0\Downtown" /f
REG ADD "HKLM\SOFTWARE\Adobe\Acrobat Reader\8.0\Downtown" /v bDontShowAtLaunch /t REG_DWORD /d 1 /f
REG ADD "HKLM\SOFTWARE\Adobe\Acrobat Reader\8.0\Downtown" /v bGoOnline /t REG_DWORD /d 0 /f
---
Save script and excute on test computer. Check registry for the settings above. Update etc should be removed for any/all users. Start Adobe Reader v8 on test computer to confrm correct behaviour.
When run as startup script, it will pop up an installer window when computer boots. Looks ugly, but works, and you don't have to mess around with custom msi- and mst-packages.
Passing parameters to msi-engine from command line doesn't seem to work properly with the exe-installer. Only thing that sort of works is the quiet-switch. Logging eg does not, one only gets a msi-switches help window.
Tested and deemed ok on WinXP SP2, WinXP x64 SP2. Probably works on Win2k and Win2k3 as well.
Einfach nach deinen Bedürfnissen anpassen. Alternativ kannst du natürlich auch mit Orca die MSI anpassen.
Sind die Sprachversionen dieselben? Betriebssystem Deutsch - Adobe Reader ebenfalls? Wenn nicht, gibt es eine erweiterte Einstellung in der Gruppenrichtlinie, wo man die Sprachversion ignorieren kann.
"Bereitstellung von Software - Erweitert - Sprache beim Bereitstellen dieses Pakets ignorieren"
Der Customizing Wizard ist wie der Name schon sagt assistentengeführt ... da kann man (wenn man lesen kann) eigentlich nichts verkehrt machen. How-to ist m.E. dafür absolut unnötig!
CLI script to deploy Acrobat Reader v8, without messing with MSI:s, MST:s and other things. Deployable over AD/GPO startup script.
1. Get the full 20MB installer by choosing to download for Windows Server 2003 from here. Other versions gets you the 500k downloader package which is useless. No yahoo-toolbar or any other addons included in this full package AFAIK.
2. Create cmd-file and paste stuff between ---'s into it. Change path to your admin-install share as appropriate:
---
"\\domain\dfs\MSI\Adobe Reader v8.0\AdbeRdr80_en_US.exe" /sPB /rs ALLUSERS=2 EULA_ACCEPT=YES SUPPRESS_APP_LAUNCH=YES /msi"/quiet"
if exist "%allusersprofile%\Desktop\Adobe Reader 8.lnk" goto delete else registry
:delete
del /F /Q "%allusersprofile%\Desktop\Adobe Reader 8.lnk"
:registry
rem Add Lockdown-settings
REG ADD "HKLM\SOFTWARE\Policies\Adobe\Acrobat Reader\8.0\FeatureLockdown" /v bUpdater /d 0 /t REG_DWORD /f
REG ADD "HKLM\SOFTWARE\Policies\Adobe\Acrobat Reader\8.0\FeatureLockdown" /v bShowEbookMenu /d 0 /t REG_DWORD /f
REG ADD "HKLM\SOFTWARE\Policies\Adobe\Acrobat Reader\8.0\FeatureLockdown" /v bPurchaseAcro /d 0 /t REG_DWORD /f
REG ADD "HKLM\SOFTWARE\Policies\Adobe\Acrobat Reader\8.0\FeatureLockdown" /v bCreatePDFOnline /d 0 /t REG_DWORD /f
REG ADD "HKLM\SOFTWARE\Policies\Adobe\Acrobat Reader\8.0\FeatureLockdown" /v bBrowserIntegration /d 0 /t REG_DWORD /f
REG ADD "HKLM\SOFTWARE\Adobe\Acrobat Reader\8.0\AdobeViewer" /v EULA /d 1 /t REG_DWORD /f
REG ADD "HKLM\SOFTWARE\Adobe\Acrobat Reader\8.0\AdobeViewer" /v Launched /d 1 /t REG_DWORD /f
REG ADD "HKLM\SOFTWARE\Adobe\Acrobat Reader\8.0\Downtown" /f
REG ADD "HKLM\SOFTWARE\Adobe\Acrobat Reader\8.0\Downtown" /v bDontShowAtLaunch /t REG_DWORD /d 1 /f
REG ADD "HKLM\SOFTWARE\Adobe\Acrobat Reader\8.0\Downtown" /v bGoOnline /t REG_DWORD /d 0 /f
---
Save script and excute on test computer. Check registry for the settings above. Update etc should be removed for any/all users. Start Adobe Reader v8 on test computer to confrm correct behaviour.
When run as startup script, it will pop up an installer window when computer boots. Looks ugly, but works, and you don't have to mess around with custom msi- and mst-packages.
Passing parameters to msi-engine from command line doesn't seem to work properly with the exe-installer. Only thing that sort of works is the quiet-switch. Logging eg does not, one only gets a msi-switches help window.
Tested and deemed ok on WinXP SP2, WinXP x64 SP2. Probably works on Win2k and Win2k3 as well.
Einfach nach deinen Bedürfnissen anpassen. Alternativ kannst du natürlich auch mit Orca die MSI anpassen.
Hm, also ich hab das jetzt versucht, und das Script per GPO als Startscript definiert, aber da passiert gar nix.
Wenn ich es händisch starte funzt es...