Difference between revisions of "Photoshop"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
m
 
m
Line 28: Line 28:
 
     </package><br>
 
     </package><br>
 
</blockquote>
 
</blockquote>
 +
 +
The photoshop-uninstall.bat will look like this (in one line):
 +
 +
"C:\Programme\InstallShield Installation Information\{EFB21DE7-8C19-4A88-BB28-A766E16493BC}\setup.exe" -s -f1"\\edu\dfs\Admin\non-msi\photoshop\Uninstall\photoshop-uninstall.iss" -f2"C:\windows\temp\photoshop-uninstall.log"
 +
  
 
[[category:Silent Installers|Photoshop]]
 
[[category:Silent Installers|Photoshop]]

Revision as of 10:04, 5 August 2005

You need to have a valid setup.iss file for a silent Photoshop installation.

First make sure you don't have any setup.iss file in your C:\WINDOWS folder (to be sure the one we create is really made by us). If there is any, delete it or rename - it is not used by your system.

Next, launch the setup.exe from the command line with /r (or was it -r?) switch and go through the whole installation. After it's done, you will have a new setup.iss file in C:\WINDOWS folder. Copy it to you Photoshop setup dir (make sure you didn't have one there before, if you did, rename it).

The uninstaller needs a similar operation with /r switch.


<package
id="photoshop801"
name="Photoshop CS 8.0.1"
revision="1"
reboot="true"
priority="0">
<check type="uninstall" condition="exists" path="Adobe Photoshop CS" />

<install cmd="\\server\Admin\Non-MSI\Photoshop\setup.exe -s -f2c:\Windows\Temp\photoshop.log">
<exit code="0" />
</install>

<remove cmd="\\server\Admin\Non-MSI\Photoshop\uninstall\photoshop-uninstall.bat" />

<upgrade cmd="" />

</package>

The photoshop-uninstall.bat will look like this (in one line):

"C:\Programme\InstallShield Installation Information\{EFB21DE7-8C19-4A88-BB28-A766E16493BC}\setup.exe" -s -f1"\\edu\dfs\Admin\non-msi\photoshop\Uninstall\photoshop-uninstall.iss" -f2"C:\windows\temp\photoshop-uninstall.log"