Difference between revisions of "QCAD"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
m
m
Line 1: Line 1:
 
This is a silent installer and uninstaller for QCAD (CAD package).
 
This is a silent installer and uninstaller for QCAD (CAD package).
  
<package id="qcad" name="QCAD (CAD package)" revision="1" priority="0" reboot="false">
+
<source lang="xml">
 +
<package id="qcad" name="QCAD (CAD package)" revision="1" priority="0" reboot="false">
 
  <check type="file" condition="exists" path="%ProgramFiles%\QCAD\qcad.exe" />
 
  <check type="file" condition="exists" path="%ProgramFiles%\QCAD\qcad.exe" />
 
  <install cmd='cmd /c mkdir "%ProgramFiles%\QCAD" ' />
 
  <install cmd='cmd /c mkdir "%ProgramFiles%\QCAD" ' />
Line 7: Line 8:
 
  <remove cmd='cmd /c del /s /q "%ProgramFiles%"\qcad' />
 
  <remove cmd='cmd /c del /s /q "%ProgramFiles%"\qcad' />
 
  <remove cmd='cmd /c del /s /q "%AllUsersProfile%\Start Menu\Programs\qcad" '/>
 
  <remove cmd='cmd /c del /s /q "%AllUsersProfile%\Start Menu\Programs\qcad" '/>
</package>
+
</package>
 +
</source>
  
 
[[category:Silent Installers]]
 
[[category:Silent Installers]]

Revision as of 15:08, 30 March 2008

This is a silent installer and uninstaller for QCAD (CAD package).

<package id="qcad" name="QCAD (CAD package)" revision="1" priority="0" reboot="false">
 <check type="file" condition="exists" path="%ProgramFiles%\QCAD\qcad.exe" />
 <install cmd='cmd /c mkdir "%ProgramFiles%\QCAD" ' />
 <install cmd='cmd /c copy %SOFTWARE%\QCAD\Raw\*.* "%ProgramFiles%"\QCAD' />
 <remove cmd='cmd /c del /s /q "%ProgramFiles%"\qcad' />
 <remove cmd='cmd /c del /s /q "%AllUsersProfile%\Start Menu\Programs\qcad" '/>
</package>