Overview
This article describes how to silently install Adobe Reader on multiple workstations, customize the installation options (accept EULA, remove desktop shortcut etc) using the Adobe Customization Wizard and install Adobe Reader font packs and updates. Adobe Reader will be deployed to workstations using a batch file “Install Adobe Reader.cmd” (example at the end of the article).
Lots of articles cover some of the steps. I thought it might be helpful for others to have all the information in one place. Feedback and comments are welcome.
Download Adobe Reader MSI, language packs and updates
First you will need to download the Adobe Reader MSI (setup) files, font packs and updates you want to install. In this example I’m installing Adobe Reader 9.3.0, Japanese Font Pack, Korean Font Pack, Chinese Traditional Font Pack and Adobe Reader 9.3.1, 9.3.2, 9.3.3 updates.
Adobe Reader Customization Wizard
The Adobe Reader Customization Wizard is a utility provided by Adobe to help customize the installation of Adobe products. The customization wizard generates a transforms file which is used when deploying the MSI file to customize installation options.
Run the Adobe Customization Wizard
Select - File – Open Package – Open the Adobe Reader 9 MSI file and select the Adobe Reader options you want.
Note: Create an empty setup.ini in the same folder as the MSI file otherwise you will get a "setup.ini not found" error from the Customization Wizard.
Installation Options
Run installation – Silently
If reboot required – Supress reboot
Registry
Destination Computer
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run
Adobe Reader Speed Launcher: Action – Remove Value
This stops Adobe Reader Speed Launcher from being started automatically.
Shortcuts
Desktop – remove shortcut
EULA and Document Status
Suppress display of EULA
Online and Acrobat.com Features
Disable all updates
In Adobe Reader, disable Help – Purchase Adobe Acrobat
Disable all Acrobat.com access
Disable Product Improvement Program to enabled
Disable Viewing of PDF with Ads for Adobe PDF to enabled
Select - File - Save Package
The Customization Wizard generates a transforms (.mst) file and .ref file and updates setup.ini. Make sure that these files are in the same folder as the MSI file you want to deploy.
Deploying Adobe Reader
Adobe Reader will be installed on workstations by using this batch file:
Install Adobe Reader.cmd@Echo offREM Silent install Adobe Reader using the transforms file start /wait msiexec /i "\\Server\Software$\Applications\Adobe Reader\9.3\AdbeRdr930_en_US.msi" TRANSFORMS="\\Server\Software$\Applications\Adobe Reader\9.3\AdbeRdr930_en_US.mst" /qn /norestartREM Install Adobe Reader Japanese Font Packstart /wait msiexec /i "\\Server\Software$\Applications\Adobe Reader\9.3\FontPack90_ja_JP.msi" /qn /norestartREM Install Adobe Reader Korean Font Packstart /wait msiexec /i "\\Server\Software$\Applications\Adobe Reader\9.3\FontPack90_ko_KR.msi" /qn /norestartREM Install Adobe Reader Chinese Traditional Font Packstart /wait msiexec /i "\\Server\Software$\Applications\Adobe Reader\9.3\FontPack90_zh_TW.msi" /qn /norestartREM install 9.3.2 updateREM have to install updates in this order 9.3.2, 9.3.3 then 9.3.4start /wait msiexec /update "\\Server\Software$\Applications\Adobe Reader\9.3\AdbeRdrUpd932_all_incr.msp" /qn /norestartREM install 9.3.3 updatestart /wait msiexec /update "\\Server\Software$\Applications\Adobe Reader\9.3\AdbeRdrUpd933_all_incr.msp" /qn /norestartREM install 9.3.4 updatestart /wait msiexec /update "\\Server\Software$\Applications\Adobe Reader\9.3\AdbeRdrUpd934_all_incr.msp" /qn /norestartREM delete desktop shortcutdel "C:\Documents and Settings\All Users\Desktop\Adobe Reader 9.lnk" /q
Comments (0)