Difference between revisions of "Adobe Reader"
Line 1: | Line 1: | ||
− | + | Download and install Adobe Reader. | |
− | + | ||
− | + | In, for example, %PROGRAMFILES%\Adobe\Acrobat 7.0\Setup FilesRdrBig708\ENU (and ENU_) are | |
− | + | <code>Adobe Reader 7.0.8.msi</code> and <code>Data1.cab</code>. Copy these files to your server and use them to deploy Adobe Reader on other workstations. | |
− | + | ||
+ | Take care of the language version, the one below is English. A package in a different language will also have a different ID for the remove command. If you previously have a package called acrobat7, increment the revision number - the upgrade command comes into effect and obsoletes 7.0 and 7.0.1 to 7.0.4 packages. | ||
<package | <package | ||
Line 27: | Line 28: | ||
</package> | </package> | ||
− | + | This produces an error sometimes. That is because the installer seems to finish with different exit codes depending on machine configuration, but it kind of works - first WPKG installs 7.0.5 and exits with an error code and on the next run WPKG bypasses it because the uninstall condition is met. If someone has more time to test it please '''fix this''' | |
− | This is | + | - This is probably 3010 .. which means "please reboot". To fix it simply add a second exit code line to your package (and set reboot flag) .. see above. |
− | In uninstall just change the third part of the | + | - In uninstall just change the third part of the alphanumeric chain (1033) into NLS code, which is: |
German: 1031 | German: 1031 | ||
Polish: 1045 | Polish: 1045 |
Revision as of 17:43, 1 September 2006
Download and install Adobe Reader.
In, for example, %PROGRAMFILES%\Adobe\Acrobat 7.0\Setup FilesRdrBig708\ENU (and ENU_) are
Adobe Reader 7.0.8.msi
and Data1.cab
. Copy these files to your server and use them to deploy Adobe Reader on other workstations.
Take care of the language version, the one below is English. A package in a different language will also have a different ID for the remove command. If you previously have a package called acrobat7, increment the revision number - the upgrade command comes into effect and obsoletes 7.0 and 7.0.1 to 7.0.4 packages.
<package id="acrobat7" name="Acrobat Reader 7.0.5" revision="5" reboot="false" priority="10"> <check type="uninstall" condition="exists" path="Adobe Reader 7.0.5" /> <install cmd='msiexec /q /i "\\server\wpkg\pkg\Adobe Reader 7.0.5.msi" allusers=1'> <exit code="0" /> </install> <remove cmd='MsiExec.exe /q /x{AC76BA86-7AD7-1033-7B44-A70500000002}' /> <upgrade cmd='msiexec /q /i "\\server\wpkg\pkg\Adobe Reader 7.0.5.msi" allusers=1'> <exit code="0" /> <exit code="3010" /> </upgrade> </package>
This produces an error sometimes. That is because the installer seems to finish with different exit codes depending on machine configuration, but it kind of works - first WPKG installs 7.0.5 and exits with an error code and on the next run WPKG bypasses it because the uninstall condition is met. If someone has more time to test it please fix this
- This is probably 3010 .. which means "please reboot". To fix it simply add a second exit code line to your package (and set reboot flag) .. see above.
- In uninstall just change the third part of the alphanumeric chain (1033) into NLS code, which is: German: 1031 Polish: 1045
See Talk:Adobe_Reader for some more info on uninstalling.