Difference between revisions of "Adobe CS3"
From WPKG | Open Source Software Deployment and Distribution
(New page: First, you need to read the [http://www.adobe.com/support/photoshop/ts/documents/kb400995/CS3_Deployment.pdf Enterprise deployment options for Adobe Creative Suite 3]. Here is a summary: ...) |
(No difference)
|
Revision as of 05:24, 27 September 2008
First, you need to read the Enterprise deployment options for Adobe Creative Suite 3.
Here is a summary: 1: Copy the whole D:\Adobe CS3 folder from the DVD to the SOFTWARE folder. 2: Find out the so called "driver payload folder". For my case it is Adobe CS3\payloads\AdobeDesignSuitePremiumzh_TW. 3: Create an application.xml.override file, whose main purpose is to provide the serial number. Put the file into the driver payload folder.
<package id="adobecs3"
name="Adobe CS3"
revision="1"
reboot="false"
priority="0">
<check type="file" condition="exists" path="%PROGRAMFILES%\Adobe\Adobe Photoshop CS3\Photoshop.exe" />
<check type="file" condition="exists" path="%PROGRAMFILES%\Adobe\Adobe Illustrator CS3\Support Files\Contents\Windows\Illustrator.exe" />
<check type="file" condition="exists" path="%PROGRAMFILES%\Adobe\Adobe InDesign CS3\InDesign.exe" />
<install cmd='"%SOFTWARE%\adobecs3\setup.exe" --mode=Silent --deploymentFile="%SOFTWARE%\adobecs3\deployment\install.xml"' />
<upgrade cmd='"%SOFTWARE%\adobecs3\setup.exe" --mode=Silent --deploymentFile="%SOFTWARE%\adobecs3\deployment\install.xml"' />
<remove cmd='"%SOFTWARE%\adobecs3\setup.exe" --mode=Silent --deploymentFile="%SOFTWARE%\adobecs3\deployment\uninstall.xml"' />
</package>