Acrobat Reader Update 7.0.x

From WPKG | Open Source Software Deployment and Distribution
Revision as of 12:26, 18 August 2005 by WPKGSysop (Talk | contribs)

Jump to: navigation, search

First, install Acrobat Reader 7 normally (download the installer from adobe.com, double click on it, and install it). Then start it and check for online updates. Two files will be downloaded (7.0.1 update and 7.0.2 update). After installing them, look at C:\Programme\Adobe (for german Windows version) and catch the msi-files in the folders: {0C55731F-7B21-4936-839A-BA09B2EAED59} and {AC703000-70F3-4E65-BC6A-CF781045277C}. Just copy them to your server.

excerpt from package.xml:

<package
 id="acrobat701"
 name="Acrobat Reader Update 7.0.1"
 revision="1"
 reboot="false"
 priority="9">
 <check type="uninstall" condition="exists" path="Adobe Acrobat 7.0.1 and Reader 7.0.1 Update" />
 <install cmd='msiexec /q /i "\\server\wpkg\MSI\Acrobat\Adobe Acrobat 7.0.1 and Reader 7.0.1 Update.msi" allusers=1'>
  <exit code="0" />
 </install>

 <remove cmd="" />

 <upgrade cmd="" />
</package>

<package
 id="acrobat702"
 name="Acrobat Reader Update 7.0.2"
 revision="1"
 reboot="false"
 priority="8">
 <check type="uninstall" condition="exists" path="Adobe Acrobat 7.0.2 and Reader 7.0.2 Update" />
 <install cmd='msiexec /q /i "\\server\wpkg\MSI\Acrobat\Adobe Acrobat 7.0.2 and Reader 7.0.2 Update.msi" allusers=1'>
  <exit code="0" />
 </install>

 <remove cmd="" />

 <upgrade cmd="" />
</package>

Your Acrobat Reader 7 package description should have a priority of 10 or higher!
The shown package.xml is valid only for the german Windows version!


If you want to install Adobe Reader 7 together with all updates, here is a handy bat file which will do it:

msiexec /qb /i "\\server\packages\acrobatreader7\Adobe Reader 7.0 - Deutsch.msi"
msiexec /qb /i "\\server\packages\acrobatreader7\updates\Adobe Acrobat 7.0.1 and Reader 7.0.1 Update.msi"
msiexec /qb /i "\\server\packages\acrobatreader7\updates\Adobe Acrobat 7.0.2 and Reader 7.0.2 Update.msi"
msiexec /qb /i "\\server\packages\acrobatreader7\updates\Adobe Acrobat 7.0.3 and Reader 7.0.3 Update.msi"

Below a bat file which will uninstall Adobe Reader if you no longer wish to have it:

:: Uninstall update 3
MsiExec.exe /I{AC76BA86-0000-7EC8-7489-000000000704}
:: Uninstall update 2
MsiExec.exe /I{AC76BA86-0000-7EC8-7489-000000000703}
:: Uninstall update 1
MsiExec.exe /I{AC76BA86-0000-7EC8-7489-000000000702}
:: Uninstall Adobe Reader 7
MsiExec.exe /I{AC76BA86-7AD7-1031-7B44-A70000000000}

I found these values in the registry.

Just save the two above as batch files, and put them as install and remove cmd for Adobe Acrobat 7 into your packages.xml.