Difference between revisions of "Wincvs"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
m
m
Line 1: Line 1:
 
This is a silent install of WinCVS, please download and unpack the .zip file into your package directory, before executing.
 
This is a silent install of WinCVS, please download and unpack the .zip file into your package directory, before executing.
  
 
+
<source lang="xml">
 
+
<package  
 
+
  <package  
+
 
   id="wincvs" name="WinCVS" revision="1" priority="0" reboot="false">
 
   id="wincvs" name="WinCVS" revision="1" priority="0" reboot="false">
 
   <check type="uninstall" condition="exists" path="WinCvs 2.0" />
 
   <check type="uninstall" condition="exists" path="WinCvs 2.0" />
Line 11: Line 9:
 
   <remove cmd='"%PROGRAMFILES%\cvsnt\unins000.exe" /sp- /silent /norestart' />
 
   <remove cmd='"%PROGRAMFILES%\cvsnt\unins000.exe" /sp- /silent /norestart' />
 
   <upgrade cmd= '%SOFTWARE%\wincvs_setup.exe /sp- /silent' />
 
   <upgrade cmd= '%SOFTWARE%\wincvs_setup.exe /sp- /silent' />
  </package>
+
</package>
 
+
</source>
  
 
[[category:Silent Installers]]
 
[[category:Silent Installers]]

Revision as of 11:05, 1 May 2008

This is a silent install of WinCVS, please download and unpack the .zip file into your package directory, before executing.

<package 
   id="wincvs" name="WinCVS" revision="1" priority="0" reboot="false">
   <check type="uninstall" condition="exists" path="WinCvs 2.0" />
   <install cmd='%SOFTWARE%\cvsnt_setup.exe /sp- /silent /norestart' />
   <install cmd='%SOFTWARE%\wincvs_setup.exe /sp- /silent' />
   <remove cmd='"%PROGRAMFILES%\cvsnt\unins000.exe" /sp- /silent /norestart' />
   <upgrade cmd= '%SOFTWARE%\wincvs_setup.exe /sp- /silent' />
</package>