Difference between revisions of "Adobe Creative Suite"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
 
Line 1: Line 1:
 
This is a silent installer and uninstaller for Adobe Creative Suite.
 
This is a silent installer and uninstaller for Adobe Creative Suite.
  
It needs, AutoIt, so you need a response file.
+
<source lang="xml">
 +
<package id="adobecs6std" name="Adobe Creative Suite 6 Design Standard" revision="%version%.2" priority="0" reboot="false">
 +
<check type="uninstall" condition="exists" path="Adobe Creative Suite 6 Design Standard" />
 +
<install cmd='msiexec /qn /i "%SOFTWARE%\adobe\Adobe_CS6\complete\Build\adobecs6std.msi"' />
 +
<remove cmd='msiexec /qn /x "%SOFTWARE%\adobe\Adobe_CS6\complete\Build\adobecs6std.msi"' />
 +
</package>
 +
</source>
  
If someone has a complete installer (no AutoIt), please correct the below entry.
+
A previous version used AutoIt, so you needed a response file.
  
 
<source lang="xml">
 
<source lang="xml">
Line 19: Line 25:
 
</source>
 
</source>
  
<source lang="xml">
 
<package id="adobecs6std" name="Adobe Creative Suite 6 Design Standard" revision="%version%.2" priority="0" reboot="false">
 
<check type="uninstall" condition="exists" path="Adobe Creative Suite 6 Design Standard" />
 
<install cmd='msiexec /qn /i "%SOFTWARE%\adobe\Adobe_CS6\complete\Build\adobecs6std.msi"' />
 
<remove cmd='msiexec /qn /x "%SOFTWARE%\adobe\Adobe_CS6\complete\Build\adobecs6std.msi"' />
 
</package>
 
</source>
 
  
 
[[category:Silent Installers]]
 
[[category:Silent Installers]]
 
[[Category:Adobe software]]
 
[[Category:Adobe software]]

Latest revision as of 10:53, 24 June 2014

This is a silent installer and uninstaller for Adobe Creative Suite.

<package id="adobecs6std" name="Adobe Creative Suite 6 Design Standard" revision="%version%.2" priority="0" reboot="false">
<check type="uninstall" condition="exists" path="Adobe Creative Suite 6 Design Standard" />
<install cmd='msiexec /qn /i "%SOFTWARE%\adobe\Adobe_CS6\complete\Build\adobecs6std.msi"' />
<remove cmd='msiexec /qn /x "%SOFTWARE%\adobe\Adobe_CS6\complete\Build\adobecs6std.msi"' />
</package>

A previous version used AutoIt, so you needed a response file.

 <package id="adobecs" name="Adobe Creative Suite" revision="1" priority="0" reboot="false">
 <check type="uninstall" condition="exists" path="Adobe Creative Suite" />
 <!-- unsure about this -->
 <install cmd='%SOFTWARE%\tools\autoit %SOFTWARE%\scripts\adobecs.aut' />
 <remove cmd="msiexec /qn /l* c:\netinst\logs\creativesuite.log /x{D52ECEBC-9B20-41A5-81C4-A62DE2367419}" />
 <remove cmd="msiexec /qn /l* c:\netinst\logs\creativesuite.log /x{01958032-9877-4118-B87F-9EFA74B3F15F}" />
 <remove cmd="msiexec /qn /l* c:\netinst\logs\creativesuite.log /x{416DFEDD-9F1B-4EFC-AF70-FCA891AE0251}" />
 <remove cmd="msiexec /qn /l* c:\netinst\logs\creativesuite.log /x{91A4AD99-69CE-4745-97B7-0E0DFBECFDE5}" />
 <remove cmd="msiexec /qn /l* c:\netinst\logs\creativesuite.log /x{D3E4251D-8364-4698-B0E0-A7C799384403}" />
 <upgrade cmd='' />
 </package>