In my organization we push out Adobe Reader using an Active Directory policy. In order to do this using we use the Software Management features of Active Directory which requires an .MSI. Adobe supplies an .MSI for Adobe Reader and itās relatively simple to deploy as long as itās a base version (ie. no updates). However, If you have to apply the quarterly updates the process becomes a little less intuitive. It is my hope that contributing this information and the script below will make the process a little easier for people to keep their Adobe Reader patched.
First, if you are deploying Adobe Reader, Adobe requires that you sign Distribution Agreement with them. Itās free, really not that difficult and itās the only way to legally obtain the .MSI required to do the deployment. So just do it.
The purpose of this post is really about how to patch an Adobe Reader .MSI with the .MSP in a way that you are still able to customize the patched version with the Adobe Customization Wizard and then have that in a ready state to deploy using Active Directory. Iām not going to cover much of how to configure the group policies, Iām assuming that you already have that knowledge. After all, you guys are smart! :)
Since the scheduled updates of Adobe Reader is quarterly, patching it has not been I did often. By the time the new patch came out, I had forgotten how to do the process and wasnāt able to devote the time into trying to do it again. So, to help with this Iāve written a script that will patch the Adobe Reader .MSI using the .MSP and then extract some files from the .EXE installer. Iāll explain it below.
Unless Adobe changes the process or naming convention of their files this script should take three files and output a working AIP (Administrator Install Point) directory with a patched .MSI that is ready to deploy via Group Policy. It follows all the steps that Adobe has laid out but simply automates it. Using this, the AIP is also in a state that can be customized by the Adobe Customization Wizard if you need to create a transform (.MST) to customize the options that are deployed. You only need this script if you are deploying a PATCHED .MSI. If you are using a base version this is unnecessary.
Hereās a list of the files you need. You should be able to pull these from Adobeās FTP site (ftp://ftp.adobe.com/pub/adobe/reader/win/). They should all be downloaded and placed in the same folder. Again, remember the Distribution Agreement mentioned above.
File | Example Filename |
The script above, Silly! | AdobeReaderPatcher.cmd |
The base .MSI | AdbeRdr1010_en_US.msi |
The .MSP patch | AdbeRdrUpd1014.msp |
The .EXE installer for the new version | AdbeRdr1014_en_US.exe |
Once all the files are downloaded and located in the same folder you need to update some variables in the script so that it knows which versions itās working with. The script doesnāt modify itās logic based on these variables, itās really just using them to generate filenames on the fly. The script above was written shortly after Adobe Reader X v10.1.4 was released so it is already set to take the v10.1.0 .MSI and apply the v10.1.4 .MSP to the en_US version. Note the following lines in the script is where you make the modifications.
Once your changes are saved, launch an elevated Command Prompt and CD to your working directory.
Once there run AdobeReaderPatcher.cmd (or whatever you named it), and it will go through the patching process.
The script will generate a directory called āAIPā. When all is done, this will be the folder you copy to your network share or customize with the Adobe Customization Wizard. I should mention that the two setup (setup.exe and setup.ini) files that are copied are pulled from the .EXE. Itās actually the only reason we need the .EXE. Some of the options you may choose in the Adobe Customization Wizard require these files.
Itāll be interesting to see if this works with the next version of Adobe Reader X (v10.1.5?). Good luck everyone!