Difference between revisions of "PeaZip"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
(Created page with 'This is a silent installer and uninstaller for [http://peazip.sourceforge.net/ PeaZip]. Remember to replace the the version number (3.0) with whatever version you are deploying a…')
 
(peazip 4.5.1)
Line 1: Line 1:
This is a silent installer and uninstaller for [http://peazip.sourceforge.net/ PeaZip]. Remember to replace the the version number (3.0) with whatever version you are deploying as well as the paths to the installer.
+
This is a silent installer and uninstaller for [http://peazip.sourceforge.net/ PeaZip]. Remember to replace the the version number (4.5.1) with whatever version you are deploying as well as the paths to the installer.
 +
 
 +
Please note that PeaZip installers for Windows are released in partnership with AVGpartnership installer, offering optional installation of AVG Security Toolbar. If you don't want the toolbar you must download the "plain" version from [http://sourceforge.net/projects/peazip/files/4.5.1/peazip-plain-4.5.1.WINDOWS.exe/download]
  
 
<source lang="xml">  
 
<source lang="xml">  
 
<package
 
<package
 
     id='peazip'
 
     id='peazip'
     name='PeaZip 3.0'
+
     name='PeaZip 4.5.1'
     revision='20100505'
+
     revision='20120510'
 
     priority='0'
 
     priority='0'
 
     reboot='false' >
 
     reboot='false' >
     <check type='uninstall' condition='exists' path='PeaZip 3.0' />
+
    <variable name="version" value="4.5.1" />
     <install cmd='"%SOFTWARE%\PeaZip\peazip-3.0.WINDOWS.exe" /SP- /VERYSILENT' >
+
     <check type='uninstall' condition='exists' path='PeaZip %version%' />
 +
     <install cmd='"%SOFTWARE%\PeaZip\peazip-%version%.WINDOWS.exe" /SP- /VERYSILENT' >
 
         <exit code='0' />
 
         <exit code='0' />
 
     </install>
 
     </install>
     <upgrade cmd='"%SOFTWARE%\PeaZip\peazip-3.0.WINDOWS.exe" /SP- /VERYSILENT' >
+
     <upgrade cmd='"%SOFTWARE%\PeaZip\peazip-%version%.WINDOWS.exe" /SP- /VERYSILENT' >
 
         <exit code='0' />
 
         <exit code='0' />
 
     </upgrade>
 
     </upgrade>

Revision as of 15:27, 7 June 2012

This is a silent installer and uninstaller for PeaZip. Remember to replace the the version number (4.5.1) with whatever version you are deploying as well as the paths to the installer.

Please note that PeaZip installers for Windows are released in partnership with AVGpartnership installer, offering optional installation of AVG Security Toolbar. If you don't want the toolbar you must download the "plain" version from [1]

 
<package
    id='peazip'
    name='PeaZip 4.5.1'
    revision='20120510'
    priority='0'
    reboot='false' >
    <variable name="version" value="4.5.1" />
    <check type='uninstall' condition='exists' path='PeaZip %version%' />
    <install cmd='"%SOFTWARE%\PeaZip\peazip-%version%.WINDOWS.exe" /SP- /VERYSILENT' >
        <exit code='0' />
    </install>
    <upgrade cmd='"%SOFTWARE%\PeaZip\peazip-%version%.WINDOWS.exe" /SP- /VERYSILENT' >
        <exit code='0' />
    </upgrade>
    <remove cmd='"%PROGRAMFILES%\PeaZip\unins000.exe" /VERYSILENT' >
        <exit code='0' />
    </remove>
</package>