Difference between revisions of "EDrawings"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
m (EDrawings 2006)
m
Line 1: Line 1:
== EDrawings 2006 ==
+
== eDrawings 2006 ==
  
This is a silent installer and uninstaller for eDrawings 2006 (a nice cad viewer from Solidworks).
+
This is a silent installer and uninstaller for eDrawings 2006 (a nice CAD viewer from Solidworks).
 
+
<source lang="xml">
<package id="edrawings" name="eDrawings" revision="2006" reboot="false" priority="0">
+
<package id="edrawings" name="eDrawings" revision="2006" reboot="false" priority="0">
 
   <check type="uninstall" condition="exists" path="eDrawings 2006" />
 
   <check type="uninstall" condition="exists" path="eDrawings 2006" />
 
   
 
   
Line 11: Line 11:
 
   <exit code="0" />
 
   <exit code="0" />
 
   <exit code="3010" />
 
   <exit code="3010" />
   </upgrade><br>
+
   </upgrade>
</package>
+
</package>
 
+
</source>
 
[[category:Silent Installers]]
 
[[category:Silent Installers]]

Revision as of 19:12, 9 February 2008

eDrawings 2006

This is a silent installer and uninstaller for eDrawings 2006 (a nice CAD viewer from Solidworks).

<package id="edrawings" name="eDrawings" revision="2006" reboot="false" priority="0">
  <check type="uninstall" condition="exists" path="eDrawings 2006" />
 
  <install cmd='msiexec /q /i "%SOFTWARE%\edrawings\eDrawings.msi" allusers=1' />
  <remove cmd='MsiExec.exe /q /x{AB31E6F5-2020-4AEB-A0D8-A93F4519051B}' />
  <upgrade cmd='msiexec /q /i "%SOFTWARE%\edrawings\eDrawings.msi" allusers=1'>
   <exit code="0" />
   <exit code="3010" />
  </upgrade>
</package>