Difference between revisions of "Acrobat Reader Update 7.0.x"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
m
m (remove from list)
 
(7 intermediate revisions by 5 users not shown)
Line 1: Line 1:
First, install Acrobat Reader 7 normally (download the installer from adobe.com, double click on it, and install it).
+
This page is currently obsolete because Adobe has released Reader 7.0.5 as a full install package - go to [[Adobe Reader]].
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.
+
<br><br>
+
excerpt from ''package.xml'':
+
<!--<blockquote style="background: white; border: 1px solid black; padding: 1em;">-->
+
<pre>
+
<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>
+
</pre>
+
<!--</blockquote>-->
+
 
+
Your Acrobat Reader 7 package description should have a priority of 10 or higher!<br>
+
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:
+
<!--<blockquote style="background: white; border: 1px solid black; padding: 1em;">-->
+
<pre>
+
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"
+
</pre>
+
<!--</blockquote>-->
+
 
+
Below a bat file which will uninstall Adobe Reader if you no longer wish to have it:
+
<!--<blockquote style="background: white; border: 1px solid black; padding: 1em;">-->
+
<pre>
+
<nowiki>::</nowiki> Uninstall update 3
+
MsiExec.exe /I{AC76BA86-0000-7EC8-7489-000000000704}
+
<nowiki>::</nowiki> Uninstall update 2
+
MsiExec.exe /I{AC76BA86-0000-7EC8-7489-000000000703}
+
<nowiki>::</nowiki> Uninstall update 1
+
MsiExec.exe /I{AC76BA86-0000-7EC8-7489-000000000702}
+
<nowiki>::</nowiki> Uninstall Adobe Reader 7
+
MsiExec.exe /I{AC76BA86-7AD7-1031-7B44-A70000000000}
+
</pre>
+
<!--</blockquote>-->
+
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.
+
 
+
[[category:Silent Installers|Acrobat Reader Update 7.0.x]]
+

Latest revision as of 19:10, 15 May 2020

This page is currently obsolete because Adobe has released Reader 7.0.5 as a full install package - go to Adobe Reader.