Difference between revisions of "FileZilla"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
(Filezilla 3 deploy added)
 
(13 intermediate revisions by 10 users not shown)
Line 1: Line 1:
This is a silent installer for FileZilla 2.
+
This is a silent installer for [http://filezilla-project.org/ FileZilla Client], a free FTP client.
 +
 
 +
== FileZilla Client 3.xx ==
 +
 
 +
=== Download link ===
 +
Go to https://filezilla-project.org/download.php?show_all=1 instead of https://filezilla-project.org/download.php?type=client - the first link gives you the actual installer, rather than the "Sourceforge download" tool
 +
 
 +
=== Simple FileZilla Client 3.xx installation ===
  
 
<source lang="xml">
 
<source lang="xml">
 
<?xml version="1.0" encoding="UTF-8"?>
 
<?xml version="1.0" encoding="UTF-8"?>
 
+
 
<packages>
 
<packages>
  
    <package
+
<package  
            id="filezilla"
+
id="filezilla"  
            name="filezilla"
+
name="FileZilla"  
            revision="2"
+
revision="%version%"  
            priority="1">
+
priority="0"
 +
reboot="false">
  
 +
<variable architecture="x86" name="PROGFILES" value="%PROGRAMFILES%" />
 +
<!-- This is a 32-bit program -->
 +
<variable architecture="x64" name="PROGFILES" value="%PROGRAMFILES(X86)%" />
  
            <check type="uninstall" condition="exists" path="FileZilla (remove only)" />
+
<variable name="version" value="3.5.0" />
  
            <install cmd='%SOFTWARE%\filezilla\FileZilla_2_2_30a_setup.exe /S' />
+
<check
    <install cmd='cmd /C copy /y %SOFTWARE%\filezilla\Filezilla.lnk "%ALLUSERSPROFILE%\Desktop"' />
+
type="file"
   
+
condition="versiongreaterorequal"
    <upgrade cmd='%SOFTWARE%\filezilla\FileZilla_2_2_30a_setup.exe /S' />
+
path="%PROGFILES%\FileZilla FTP Client\filezilla.exe"
    <upgrade cmd='cmd /C copy /y %SOFTWARE%\filezilla\Filezilla.lnk "%ALLUSERSPROFILE%\Desktop"' />
+
value="%version%"
 
+
/>
            <remove  cmd='' />
+
 
+
<install cmd='%SOFTWARE%\filezilla\FileZilla_%version%_win32-setup.exe /S' />
    </package>
+
 +
<upgrade cmd='%SOFTWARE%\filezilla\FileZilla_%version%_win32-setup.exe /S' />
 +
 +
<remove  cmd='%COMSPEC% /c if exist "%PROGFILES%\FileZilla FTP Client\uninstall.exe" "%PROGFILES%\FileZilla FTP Client\uninstall.exe" /S' />
 +
 +
</package>
  
 
</packages>
 
</packages>
 
</source>
 
</source>
  
Or for version 3.
+
=== FileZilla Client 3.xx with defaults ===
 +
 
 +
 
 +
Get fzdefaults.xml from filezilla doc sub-directory (<code>C:\Program Files\FileZilla FTP Client\docs\fzdefaults.xml.example</code>) and edit to your liking (e.g. Disable Automatic update).
  
 
<source lang="xml">
 
<source lang="xml">
 
<packages>
 
<packages>
    <package id="filezilla" name="filezilla" revision="3" priority="1">
+
<package  
        <check type="uninstall" condition="exists" path="FileZilla Client 3.0.7.1" />
+
    id="filezilla"  
        <install cmd='%SOFTWARE%\filezilla\FileZilla_3.0.7.1_win32-setup.exe /S' />
+
    name="FileZilla"  
        <upgrade cmd='%SOFTWARE%\filezilla\FileZilla_3.0.7.1_win32-setup.exe /S' />
+
    revision="%version%"  
        <remove  cmd='%PROGRAMFILES%\FileZilla FTP Client\uninstall.exe /S' />
+
    priority="1"
    </package>
+
    reboot="false"
 +
    >
 +
 
 +
<variable architecture="x86" name="PROGFILES" value="%PROGRAMFILES%" />
 +
<!-- This is a 32-bit program -->
 +
<variable architecture="x64" name="PROGFILES" value="%PROGRAMFILES(X86)%" />
 +
 
 +
<variable name="version" value="3.5.0" />
 +
       
 +
<check  
 +
type="file"  
 +
condition="versiongreaterorequal"  
 +
path="%PROGFILES%\FileZilla FTP Client\filezilla.exe"  
 +
value="%version%"
 +
/>
 +
       
 +
<install cmd='%SOFTWARE%\filezilla\FileZilla_%version%_win32-setup.exe /S' />
 +
 
 +
<install cmd='%COMSPEC% /c if exist "%PROGFILES%\FileZilla FTP Client" copy /y /v "%SOFTWARE%\filezilla\fzdefaults.xml" "%PROGFILES(x86)%\FileZilla FTP Client\"' />
 +
   
 +
<upgrade cmd='%SOFTWARE%\filezilla\FileZilla_%version%_win32-setup.exe /S' />
 +
 
 +
<upgrade cmd='%COMSPEC% /c if exist "%PROGFILES%\FileZilla FTP Client" copy /y /v "%SOFTWARE%\filezilla\fzdefaults.xml" "%PROGFILES%\FileZilla FTP Client\"' />
 +
 
 +
<remove  cmd='%COMSPEC% /c if exist "%PROGFILES%\FileZilla FTP Client\uninstall.exe" "%PROGFILES%\FileZilla FTP Client\uninstall.exe" /S' />
 +
</package>
 
</packages>
 
</packages>
 
</source>
 
</source>
 +
 
[[Category: Silent Installers]]
 
[[Category: Silent Installers]]

Latest revision as of 10:37, 6 February 2014

This is a silent installer for FileZilla Client, a free FTP client.

FileZilla Client 3.xx

Download link

Go to https://filezilla-project.org/download.php?show_all=1 instead of https://filezilla-project.org/download.php?type=client - the first link gives you the actual installer, rather than the "Sourceforge download" tool

Simple FileZilla Client 3.xx installation

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

	<package 
		id="filezilla" 
		name="FileZilla" 
		revision="%version%" 
		priority="0"
		reboot="false">

	<variable architecture="x86" name="PROGFILES" value="%PROGRAMFILES%" />
	<!-- This is a 32-bit program -->
	<variable architecture="x64" name="PROGFILES" value="%PROGRAMFILES(X86)%" />

	<variable name="version" value="3.5.0" />

	<check 
		type="file" 
		condition="versiongreaterorequal" 
		path="%PROGFILES%\FileZilla FTP Client\filezilla.exe" 
		value="%version%"
		/>
	 
	<install cmd='%SOFTWARE%\filezilla\FileZilla_%version%_win32-setup.exe /S' />
	 
	<upgrade cmd='%SOFTWARE%\filezilla\FileZilla_%version%_win32-setup.exe /S' />
	 
	<remove  cmd='%COMSPEC% /c if exist "%PROGFILES%\FileZilla FTP Client\uninstall.exe" "%PROGFILES%\FileZilla FTP Client\uninstall.exe" /S' />
	 
</package>

</packages>

FileZilla Client 3.xx with defaults

Get fzdefaults.xml from filezilla doc sub-directory (C:\Program Files\FileZilla FTP Client\docs\fzdefaults.xml.example) and edit to your liking (e.g. Disable Automatic update).

<packages>
<package 
    id="filezilla" 
    name="FileZilla" 
    revision="%version%" 
    priority="1"
    reboot="false"
    >

	<variable architecture="x86" name="PROGFILES" value="%PROGRAMFILES%" />
	<!-- This is a 32-bit program -->
	<variable architecture="x64" name="PROGFILES" value="%PROGRAMFILES(X86)%" />

	<variable name="version" value="3.5.0" />
        
	<check 
	type="file" 
	condition="versiongreaterorequal" 
	path="%PROGFILES%\FileZilla FTP Client\filezilla.exe" 
	value="%version%"
	/>
        
	<install cmd='%SOFTWARE%\filezilla\FileZilla_%version%_win32-setup.exe /S' />

	<install cmd='%COMSPEC% /c if exist "%PROGFILES%\FileZilla FTP Client" copy /y /v "%SOFTWARE%\filezilla\fzdefaults.xml" "%PROGFILES(x86)%\FileZilla FTP Client\"' />
    
	<upgrade cmd='%SOFTWARE%\filezilla\FileZilla_%version%_win32-setup.exe /S' />

	<upgrade cmd='%COMSPEC% /c if exist "%PROGFILES%\FileZilla FTP Client" copy /y /v "%SOFTWARE%\filezilla\fzdefaults.xml" "%PROGFILES%\FileZilla FTP Client\"' />

	<remove  cmd='%COMSPEC% /c if exist "%PROGFILES%\FileZilla FTP Client\uninstall.exe" "%PROGFILES%\FileZilla FTP Client\uninstall.exe" /S' />
</package>
</packages>