/build/static/layout/Breadcrumb_cap_w.png

Adobe Design Premium CS5

Version: 11

Don't be a Stranger!

Sign up today to participate, stay informed, earn points and establish a reputation for yourself!

Sign up! or login
Views: 4.9k  |  Created: 11/03/2010

Average Rating: 0
Design Premium CS5 has 1 inventory records, 2 Questions, 0 Blogs and 0 links. Please help add to this by sharing more!

Deployment Tips (5)

Most Common Setup Type
Not Determined
Average Package Difficulty Rating
Rated 3 / 5 (Average) based on 1 ratings
Most Commonly Reported Deployment Method
Vendor Provided Command Line (switch driven)
7
Command Line
You can transform the Setup native file in a msi file with Adobe Manager Enterprise :

http://www.adobe.com/devnet/creativesuite/enterprisedeployment.html

After that you can install it only with /quiet switch (the other one don't work):

Install: 'msiexec.exe /i "%Source_Path%\Build\Adobe Creative CS5.msi" /quiet'

Uninstall: 'msiexec.exe /x "%Source_Path%\Build\Adobe Creative CS5.msi" /quiet'

Verify: 'msiexec.exe /fa "%Source_Path%\Build\Adobe Creative CS5.msi" /quiet'

If you don't like the /quiet, you can plug it in a AutoIT script to show a progress bar.

Show Notes section to show how to make a progress bar in AutoIT.
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
1
Command Line
Use Adobe application manager enterprise edition to create a msi.

Install: Msiexec /i DesignPremium_cs5.msi /quiet

Uninstall: Msiexec /Uninstall DesignPremium_cs5.msi /quiet
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
0
Note
Silent installation for adobce cs5 design premium has changed, no longer does --record=1 work in the same way instead it seems much easier.

You need to launch adobe application manager and build a package using this software. this then creates a package of your deployment in msi format and you can install it silently like so.

<package name>.msi /quiet

I am not sure in /qb or /qn will work but the XML deployment option that was in cs4 seems to be gone from CS5, focus your efforts towards Adobe Application Manager. I assume it is the same for all adobe products.
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
0
Note
Example of progress bar in AutoIT to avoid the blank of /quiet msi option.

Run('msiexec.exe /i "%Source_Path%\Build\Adobe Creative CS5.msi" /quiet')
ProgressOn("Installation of Adobe Design Premium CS5", "your message", "your message" & @LF & "your message", 10, 10)
ProcessWait("Setup.exe") ; note that if not msiexec
DO
For $i = 0 to 100 step 1
sleep(4000)
ProgressSet( $i )
If $i > 10 and ProcessExists("Setup.exe") = 0 Then
$i = 100
ProgressSet( $i )
sleep(5000)
ProgressOff()
Endif
Next
UNTIL ProcessExists("Setup.exe") = 0
ProgressOff()
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
-1
Note

Further to DarlCells Notes. You can still use --record to create install.xml and application.xml.override files for deployment. I found that I was unable to add a file and some properties to the MSI that the Adobe Application Manager created, so had to use a wrapper and the xml files.

Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows

Inventory Records (1)

View inventory records anonymously contributed by opt-in users of the K1000 Systems Management Appliance.

Versions

Design Premium CS5

Version

11

Questions & Answers (2)

Questions & Answers related to Adobe Design Premium CS5

0
ANSWERS
3
ANSWERED

Blogs (0)

Blog posts related to Adobe Design Premium CS5

Reviews (0)

Reviews related to Adobe Design Premium CS5

 
This website uses cookies. By continuing to use this site and/or clicking the "Accept" button you are providing consent Quest Software and its affiliates do NOT sell the Personal Data you provide to us either when you register on our websites or when you do business with us. For more information about our Privacy Policy and our data protection efforts, please visit GDPR-HQ