Difference between revisions of "FilZip"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
m
 
Line 1: Line 1:
 
This is a silent installer for FilZip, a free compression program that supports many formats - see http://www.filzip.com for more info.
 
This is a silent installer for FilZip, a free compression program that supports many formats - see http://www.filzip.com for more info.
  
<pre>
+
<source lang="xml">
 
<package id='filzip' name='Filzip' revision='1' priority='20' reboot='false' >
 
<package id='filzip' name='Filzip' revision='1' priority='20' reboot='false' >
 
   <check type='uninstall' condition='exists' path='Filzip 3.06' />
 
   <check type='uninstall' condition='exists' path='Filzip 3.06' />
Line 7: Line 7:
 
   <remove cmd='"%PROGRAMFILES%\Filzip\unins000.exe" /silent' />
 
   <remove cmd='"%PROGRAMFILES%\Filzip\unins000.exe" /silent' />
 
</package>
 
</package>
</pre>
+
</source>
  
  
 
[[category:Silent Installers|FilZip]]
 
[[category:Silent Installers|FilZip]]

Latest revision as of 19:19, 12 February 2008

This is a silent installer for FilZip, a free compression program that supports many formats - see http://www.filzip.com for more info.

<package id='filzip' name='Filzip' revision='1' priority='20' reboot='false' >
  <check type='uninstall' condition='exists' path='Filzip 3.06' />
  <install cmd='%SOFTWARE%\FilZip\fz306.exe /verysilent' />
  <remove cmd='"%PROGRAMFILES%\Filzip\unins000.exe" /silent' />
</package>