Adobe Reader X Deployment (Multi Language Interface)
Adobe released a new major Reader version, Reader 10 or Reader X as they named it. Time to update our clients with the new Reader! Here at the D-spot we blogged about deploying and slipstreaming Adobe Reader in previous posts. Time to update to version 10!
First grab the Reader X sources and the Adobe Customization Wizard X.
Download Sources
Adobe Reader 10.0: Adobe Reader MUI X – Multiple languages (with these sources the users will need to choose a language at first launch. If you don’t want this behavior goto Adobe Reader X Deployment in a specific language).
Adobe Customization Wizard 10: ftp://ftp.adobe.com/pub/adobe/acrobat/win/10.x/10.0.0/misc/
Create a Distribution Point
Because Reader 10.0 is distributed as a zip archive, we can extract it. No more, no less!
Extracted sources:
Copy these files to a temporary location, and move them to a network location afterwards. Or you can copy them directly to a network location (this will be the Distribution Point).
Create a transform file (.mst) using the Adobe Customization Wizard
Launch Adobe’s Customization Wizard 10, and open the extracted AcroRead.MSI. Then change the settings to suit your needs, use the following screenshots as an example.
Create two extra registry keys in the Registry-tab. The same keys as we created for Reader 9. I only changed the version from 9.0 to 10.0:
Create new key: AVGeneral (in HKCU\Software\Adobe\Acrobat Reader\10.0), within that key create a new DWORD Value ‘bCheckForUpdatesAtStartup’.
DWORD: bCheckForUpdatesAtStartup
Value: 0
The second one is a new DWORD Value ‘OptIn’:
Create new DWORD: OptIn (in HKCU\Software\Adobe\CommonFiles\Usage\Reader 10)
Value: 0
To summarize both created registry keys, click the Summary tab:
Accept End User License Agreement (EULA):
Disable al Updates:
Save your transform file by choosing Generate Transform within the Transform menu:
Now your Distribution Point is updated with a MST (Transform) file:
Deployment
Use the MST file to deploy Adobe Reader X, with Active Directory, ConfigManager or whatever your deployment solution is. Here is the command line to install AcroRead.msi with the transform file we created:
msiexec /i “dp_path\AcroRead.msi” TRANSFORMS=”dp_path\TransformFileCreatedWithCustomWizard.mst” /qb REBOOT=ReallySuppress /log “logfilepath\reader10.txt”
