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,...")
(No difference)

Revision as of 14:26, 15 November 2012

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)


<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>