Difference between revisions of "FilZip"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
m
m
 
(2 intermediate revisions by 2 users not shown)
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.
  
<!--<blockquote style="background: white; border: 1px solid black; padding: 1em;">-->
+
<source lang="xml">
<pre>
+
<package id='filzip' name='Filzip' revision='1' priority='20' reboot='false' >
<package
+
  <check type='uninstall' condition='exists' path='Filzip 3.06' />
    id="filzip304"
+
  <install cmd='%SOFTWARE%\FilZip\fz306.exe /verysilent' />
    name="FilZip 3.0.4"
+
  <remove cmd='"%PROGRAMFILES%\Filzip\unins000.exe" /silent' />
    revision="1"
+
</package>
    reboot="false"
+
</source>
    priority="0">
+
    <check type="uninstall" condition="exists" path="FilZip 3.0.4" />
+
  
    <install cmd='\\server\NON-MSI\fz304.exe /verysilent'>
 
        <exit code="0" />
 
    </install>
 
 
    <remove  cmd='' />
 
</package>
 
</pre>
 
<!--</blockquote>-->
 
  
 
[[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>