Difference between revisions of "FileZilla"
From WPKG | Open Source Software Deployment and Distribution
m |
(Filezilla 3 deploy added) |
||
| Line 1: | Line 1: | ||
| − | This is a silent installer for FileZilla. | + | This is a silent installer for FileZilla 2. |
<source lang="xml"> | <source lang="xml"> | ||
| Line 28: | Line 28: | ||
</source> | </source> | ||
| + | Or for version 3. | ||
| + | |||
| + | <source lang="xml"> | ||
| + | <packages> | ||
| + | <package id="filezilla" name="filezilla" revision="3" priority="1"> | ||
| + | <check type="uninstall" condition="exists" path="FileZilla Client 3.0.7.1" /> | ||
| + | <install cmd='%SOFTWARE%\filezilla\FileZilla_3.0.7.1_win32-setup.exe /S' /> | ||
| + | <upgrade cmd='%SOFTWARE%\filezilla\FileZilla_3.0.7.1_win32-setup.exe /S' /> | ||
| + | <remove cmd='%PROGRAMFILES%\FileZilla FTP Client\uninstall.exe /S' /> | ||
| + | </package> | ||
| + | </packages> | ||
| + | </source> | ||
[[Category: Silent Installers]] | [[Category: Silent Installers]] | ||
Revision as of 17:07, 4 March 2008
This is a silent installer for FileZilla 2.
<?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>
Or for version 3.
<packages>
<package id="filezilla" name="filezilla" revision="3" priority="1">
<check type="uninstall" condition="exists" path="FileZilla Client 3.0.7.1" />
<install cmd='%SOFTWARE%\filezilla\FileZilla_3.0.7.1_win32-setup.exe /S' />
<upgrade cmd='%SOFTWARE%\filezilla\FileZilla_3.0.7.1_win32-setup.exe /S' />
<remove cmd='%PROGRAMFILES%\FileZilla FTP Client\uninstall.exe /S' />
</package>
</packages>