Difference between revisions of "FileZilla"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
m
 
m
Line 1: Line 1:
 
This is a silent installer for FileZilla.
 
This is a silent installer for FileZilla.
  
<pre>
+
<source lang="xml">
 
<?xml version="1.0" encoding="UTF-8"?>
 
<?xml version="1.0" encoding="UTF-8"?>
  
Line 26: Line 26:
  
 
</packages>
 
</packages>
</pre>
+
</source>
  
 
[[Category: Silent Installers]]
 
[[Category: Silent Installers]]

Revision as of 19:20, 12 February 2008

This is a silent installer for FileZilla.

<?xml version="1.0" encoding="UTF-8"?>

<packages>

    <package
            id="filezilla"
            name="filezilla"
            revision="2"
            priority="1">


             <check type="uninstall" condition="exists" path="FileZilla (remove only)" />

            <install cmd='%SOFTWARE%\filezilla\FileZilla_2_2_30a_setup.exe /S' />
	    <install cmd='cmd /C copy /y %SOFTWARE%\filezilla\Filezilla.lnk "%ALLUSERSPROFILE%\Desktop"' />
	    
	    <upgrade cmd='%SOFTWARE%\filezilla\FileZilla_2_2_30a_setup.exe /S' />
	    <upgrade cmd='cmd /C copy /y %SOFTWARE%\filezilla\Filezilla.lnk "%ALLUSERSPROFILE%\Desktop"' />

            <remove  cmd='' />

    </package>

</packages>