Difference between revisions of "Adobe Acrobat Professional 8"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
(updated to 8.1.7)
Line 1: Line 1:
 
This is the package for the popular Adobe Acrobat Professional 8 patched to 8.1.7.
 
This is the package for the popular Adobe Acrobat Professional 8 patched to 8.1.7.
 +
 +
To prepare Acrobat Professional 9 for silent installation, you will need to obtain the [http://www.adobe.com/support/downloads/detail.jsp?ftpID=3564 Adobe Customization Wizard 8] so that you can prepare the package for deployment. Once you've installed and started the Customization Wizard, use File -> Copy Package to copy the package from the CD to a location where you can modify it.
  
 
The main install and some of the patches want to perform reboots and give error 3010 so I've trapped those errors.
 
The main install and some of the patches want to perform reboots and give error 3010 so I've trapped those errors.

Revision as of 10:53, 2 August 2011

This is the package for the popular Adobe Acrobat Professional 8 patched to 8.1.7.

To prepare Acrobat Professional 9 for silent installation, you will need to obtain the Adobe Customization Wizard 8 so that you can prepare the package for deployment. Once you've installed and started the Customization Wizard, use File -> Copy Package to copy the package from the CD to a location where you can modify it.

The main install and some of the patches want to perform reboots and give error 3010 so I've trapped those errors.

If dealing with a site where Acrobat has been initially distributed or inconsistently patched outside of WPKG, you'll also need to trap 1638 on the various msiexec commands.

 <package
    id="acrobatpro8"
    name="Adobe Acrobat Professional 8"
    revision="817"
    priority="2">
    <check type="uninstall" condition="exists" path="Adobe Acrobat 8.1.6 Professional" />
    <install cmd='msiexec /i %SOFTWARE%\acrobatpro8\AcroPro.msi /qn TRANSFORMS=%SOFTWARE%\acrobatpro8\AcroPro.mst allusers=2  ' />
    <install cmd='msiexec /p %SOFTWARE%\acrobatpro8\updates\AcrobatUpd810_efgj_incr.msp /qn RebootYesNo="No" Reboot="Suppress" '  >
        <exit code='3010' />
    </install>  
    <install cmd='msiexec /p %SOFTWARE%\acrobatpro8\updates\AcrobatUpd811_all_incr.msp /qn ' >
        <exit code='3010' />
    </install>  
    <install cmd='msiexec /p %SOFTWARE%\acrobatpro8\updates\AcrobatUpd812_all_incr.msp /qn ' >
        <exit code='3010' />
    </install>  
    <install cmd='msiexec /p %SOFTWARE%\acrobatpro8\updates\AcrobatUpd813_all_incr.msp /qn ' >
        <exit code='3010' />
    </install>  
    <install cmd='msiexec /p %SOFTWARE%\acrobatpro8\updates\AcrobatUpd814_all_incr.msp /qn ' >
        <exit code='3010' />
    </install>  
    <install cmd='msiexec /p %SOFTWARE%\acrobatpro8\updates\AcrobatUpd815_all_incr.msp /qn ' >
        <exit code='3010' />
    </install>  
    <install cmd='msiexec /p %SOFTWARE%\acrobatpro8\updates\AcrobatUpd816_all_incr.msp /qn  ' >
        <exit code='3010' />
    </install>  
    <install cmd='msiexec /p %SOFTWARE%\acrobatpro8\updates\AcrobatUpd817_all_incr.msp /qn  ' >
        <exit code='3010' />
    </install>  

    <upgrade cmd='msiexec /p %SOFTWARE%\acrobatpro8\updates\AcrobatUpd817_all_incr.msp /qn  ' >
        <exit code='3010' />
    </upgrade>  

    <remove cmd='msiexec.exe /x {AC76BA86-1033-0000-7760-000000000003} ' />
 </package>