Difference between revisions of "Adobe Acrobat Professional XI"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
(Created page with "Acrobat XI installs in a similar way to Acrobat X. It's happy to uninstall previous versions of Acrobat Pro for you. To prepare Acrobat Professional XI for silent installation,...")
 
(Added VCRedist 2010 SP1 info)
Line 17: Line 17:
 
** Suppress display of End User License Agreement (EULA)
 
** Suppress display of End User License Agreement (EULA)
  
 +
Acrobat Pro X1 require the Visual Studio C++ 2010 x64 SP1 redist installed otherwise you will get msiexec 1603 errors.  Windows 7 SP1 lacks VCRedist 2010 SP1 by default so either ensure your machines have it or add an "<depends  package-id="vcredist2010SP1" />" line to this package.
  
 
<source lang="xml">
 
<source lang="xml">

Revision as of 05:20, 17 April 2013

Acrobat XI installs in a similar way to Acrobat X. It's happy to uninstall previous versions of Acrobat Pro for you.

To prepare Acrobat Professional XI for silent installation, you can use the Customization Wizard from Adobe. You will probably need a volume license so that you can use the same key across multiple computers.

You can get it from http://www.adobe.com/support/downloads/detail.jsp?ftpID=5515


Use the Customization Wizard to enter your serial number and select the options you want. Consider:

  • Installation Options
    • Run Installation: silently
    • If reboot required at end of installation: Suppress reboot
  • Shortcuts
    • Remove desktop icon
  • EULA and Document Status
    • Suppress display of End User License Agreement (EULA)

Acrobat Pro X1 require the Visual Studio C++ 2010 x64 SP1 redist installed otherwise you will get msiexec 1603 errors. Windows 7 SP1 lacks VCRedist 2010 SP1 by default so either ensure your machines have it or add an "<depends package-id="vcredist2010SP1" />" line to this package.

<package
   id="acrobat11"
   name="Adobe Acrobat XI"
   revision="11.0.0"
   reboot="false"
   priority="55">
 
        <check type="uninstall" condition="exists" path="Adobe Acrobat XI Pro" />
        <check type="uninstall" condition="versiongreaterorequal" path="Adobe Acrobat XI Pro" value="11.0.00" />

      <check type="logical" condition="or">
        <check type="file" condition="versiongreaterorequal" path="%PROGRAMFILES%\Adobe\Acrobat 11.0\Acrobat\Acrobat.dll" value="11.0.0.379" />
        <check type="file" condition="versiongreaterorequal" path="%PROGRAMFILES(x86)%\Adobe\Acrobat 11.0\Acrobat\Acrobat.dll" value="11.0.0.379" />
      </check>
 
        <install cmd='"%SOFTWARE%\Acrobat\Pro11\Adobe Acrobat XI\setup.exe"' >
                <exit code="0" />
                <exit code="3010" reboot="postponed" />
        </install>
 
        <upgrade cmd='msiexec /qn /norestart /update "%SOFTWARE%\Acrobat\Pro11\Adobe Acrobat XI\AcrobatUpd1014.msp"' >
                <exit code="0" />
                <exit code="3010" reboot="postponed" />
        </upgrade>      
 
        <remove cmd='msiexec /qn /norestart /x {AC76BA86-1033-F400-7760-000000000005}' >
          <exit code="0" />
          <exit code="1614" />
          <exit code="1605" /> <!-- already removed somehow -->
          <exit code="3010" reboot="postponed" />
        </remove>
 
</package>