Welcome to the Chocolatey Community Package Repository! The packages found in this section of the site are provided, maintained, and moderated by the community.
Moderation
Every version of each package undergoes a rigorous moderation process before it goes live that typically includes:
- Security, consistency, and quality checking
- Installation testing
- Virus checking through VirusTotal
- Human moderators who give final review and sign off
More detail at Security and Moderation.
Organizational Use
If you are an organization using Chocolatey, we want your experience to be fully reliable. Due to the nature of this publicly offered repository, reliability cannot be guaranteed. Packages offered here are subject to distribution rights, which means they may need to reach out further to the internet to the official locations to download files at runtime.
Fortunately, distribution rights do not apply for internal use. With any edition of Chocolatey (including the free open source edition), you can host your own packages and cache or internalize existing community packages.
Disclaimer
Your use of the packages on this site means you understand they are not supported or guaranteed in any way. Learn more...
- Passing
- Failing
- Pending
- Unknown / Exempted
Downloads:
2,365,408
Downloads of v 3.22.2.1:
1,669
Last Update:
01 Nov 2016
Package Maintainer(s):
Software Author(s):
- Tim Kosse
- other FileZilla committers
Tags:
filezilla ftp admin- Software Specific:
- Software Site
- Software License
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
FileZilla
This is not the latest version of FileZilla available.
- Software Specific:
- Software Site
- Software License
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
2,365,408
Downloads of v 3.22.2.1:
1,669
Maintainer(s):
Software Author(s):
- Tim Kosse
- other FileZilla committers
Edit Package
To edit the metadata for a package, please upload an updated version of the package.
Chocolatey's Community Package Repository currently does not allow updating package metadata on the website. This helps ensure that the package itself (and the source used to build the package) remains the one true source of package metadata.
This does require that you increment the package version.
FileZilla 3.22.2.1
This is not the latest version of FileZilla available.
All Checks are Passing
2 Passing Test
To install FileZilla, run the following command from the command line or from PowerShell:
To upgrade FileZilla, run the following command from the command line or from PowerShell:
To uninstall FileZilla, run the following command from the command line or from PowerShell:
NOTE: This applies to both open source and commercial editions of Chocolatey.
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
- Download the Package Download
- Follow manual internalization instructions
-
Package Internalizer (C4B)
- Run
choco download filezilla --internalize --version=3.22.2.1 --source=https://community.chocolatey.org/api/v2
(additional options) - Run
choco push --source="'http://internal/odata/repo'"
for package and dependencies - Automate package internalization
- Run
3. Enter your internal repository url
(this should look similar to https://community.chocolatey.org/api/v2)
4. Choose your deployment method:
choco upgrade filezilla -y --source="'STEP 3 URL'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade filezilla -y --source="'STEP 3 URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Ensure filezilla installed
win_chocolatey:
name: filezilla
state: present
version: 3.22.2.1
source: STEP 3 URL
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'filezilla' do
action :install
version '3.22.2.1'
source 'STEP 3 URL'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
Chocolatey::Ensure-Package
(
Name: filezilla,
Version: 3.22.2.1,
Source: STEP 3 URL
);
Requires Otter Chocolatey Extension. See docs at https://inedo.com/den/otter/chocolatey.
cChocoPackageInstaller filezilla
{
Name = 'filezilla'
Ensure = 'Present'
Version = '3.22.2.1'
Source = 'STEP 3 URL'
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'filezilla':
provider => 'chocolatey',
ensure => '3.22.2.1',
source => 'STEP 3 URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
salt '*' chocolatey.install filezilla version="3.22.2.1" source="STEP 3 URL"
See docs at https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html.
5. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...
This package was approved as a trusted package on 01 Nov 2016.
FileZilla Client is a fast and reliable cross-platform FTP, FTPS and SFTP client with lots of useful features and an intuitive graphical user interface.
$packageName = 'filezilla'
$version = '3.22.2.1'
$fileType = 'exe'
$silentArgs = '/S'
$url = "https://sourceforge.net/projects/filezilla/files/FileZilla_Client/${version}/FileZilla_${version}_win32-setup.exe/download"
$url64bit = "https://sourceforge.net/projects/filezilla/files/FileZilla_Client/${version}/FileZilla_${version}_win64-setup.exe/download"
# Even though the installer exits with error code 1223, FileZilla gets installed properly
$validExitCodes = @(0, 1223)
$is64bit = Get-ProcessorBits 64
$regPath = 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\FileZilla Client'
$regPathWow6432 = 'HKLM:\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\FileZilla Client'
# If the 32-bit version was installed on a 64-bit system, uninstall it first
if ((Test-Path $regPathWow6432) -and $is64bit) {
Write-Host 'Uninstalling the 32-bit version before installing the 64-bit version …'
$uninstallString = (Get-ItemProperty -Path $regPathWow6432).UninstallString
Uninstall-ChocolateyPackage 'filezilla 32-bit' 'exe' '/S' $uninstallString
}
Install-ChocolateyPackage $packageName $fileType $silentArgs $url $url64bit `
-validExitCodes $validExitCodes
Log in or click on link to see number of positives.
- filezilla.3.22.2.1.nupkg (5637d96dfcbb) - ## / 56
- FileZilla_3.22.2.1_win64-setup.exe (cc37ace84ea9) - ## / 57
- FileZilla_3.22.2.1_win32-setup.exe (a68c1ef031a7) - ## / 55
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Version | Downloads | Last Updated | Status |
---|---|---|---|
FileZilla 3.53.1 | 39053 | Monday, March 29, 2021 | Approved |
FileZilla 3.53.0 | 48741 | Tuesday, March 16, 2021 | Approved |
FileZilla 3.52.2 | 115104 | Monday, January 18, 2021 | Approved |
FileZilla 3.52.0.5 | 36631 | Friday, January 8, 2021 | Approved |
FileZilla 3.52.0.4 | 9239 | Thursday, January 7, 2021 | Approved |
FileZilla 3.52.0.3 | 9081 | Wednesday, January 6, 2021 | Approved |
FileZilla 3.52.0.2 | 1885 | Wednesday, January 6, 2021 | Approved |
FileZilla 3.52.0.1 | 6527 | Tuesday, January 5, 2021 | Approved |
FileZilla 3.52.0 | 13329 | Monday, January 4, 2021 | Approved |
FileZilla 3.51.0 | 138861 | Tuesday, October 20, 2020 | Approved |
FileZilla 3.50.0 | 98903 | Thursday, August 27, 2020 | Approved |
FileZilla 3.49.1 | 59580 | Wednesday, July 15, 2020 | Approved |
FileZilla 3.49.0 | 5512 | Tuesday, July 14, 2020 | Approved |
FileZilla 3.48.1 | 52470 | Tuesday, May 19, 2020 | Approved |
FileZilla 3.48.0 | 35178 | Tuesday, April 28, 2020 | Approved |
FileZilla 3.47.2.1 | 48232 | Wednesday, March 11, 2020 | Approved |
FileZilla 3.47.1 | 28711 | Tuesday, February 25, 2020 | Approved |
FileZilla 3.47.0 | 8591 | Monday, February 24, 2020 | Approved |
FileZilla 3.46.3 | 103266 | Monday, December 23, 2019 | Approved |
FileZilla 3.46.2 | 10518 | Friday, December 20, 2019 | Approved |
FileZilla 3.46.0 | 37732 | Tuesday, November 26, 2019 | Approved |
FileZilla 3.45.1 | 61044 | Monday, September 30, 2019 | Approved |
FileZilla 3.45.0 | 15709 | Tuesday, September 24, 2019 | Approved |
FileZilla 3.44.2 | 46805 | Tuesday, August 20, 2019 | Approved |
FileZilla 3.44.1 | 20792 | Friday, August 9, 2019 | Approved |
FileZilla 3.43.0 | 49474 | Thursday, June 27, 2019 | Approved |
FileZilla 3.42.1 | 55355 | Friday, May 10, 2019 | Approved |
FileZilla 3.42.0 | 13425 | Monday, May 6, 2019 | Approved |
FileZilla 3.41.2 | 50522 | Monday, March 18, 2019 | Approved |
FileZilla 3.41.1 | 17876 | Thursday, March 7, 2019 | Approved |
FileZilla 3.40.0 | 32669 | Friday, January 25, 2019 | Approved |
FileZilla 3.39.0 | 37785 | Friday, November 30, 2018 | Approved |
FileZilla 3.38.1 | 29788 | Sunday, October 28, 2018 | Approved |
FileZilla 3.38.0 | 4705 | Friday, October 26, 2018 | Approved |
FileZilla 3.37.4 | 23891 | Saturday, October 6, 2018 | Approved |
FileZilla 3.36.0 | 34373 | Monday, August 27, 2018 | Approved |
FileZilla 3.35.2 | 31466 | Monday, August 6, 2018 | Approved |
FileZilla 3.35.1 | 24829 | Monday, July 23, 2018 | Approved |
FileZilla 3.35.0 | 3357 | Monday, July 23, 2018 | Approved |
FileZilla 3.34.0 | 30321 | Sunday, June 17, 2018 | Approved |
FileZilla 3.33.0 | 37080 | Monday, May 7, 2018 | Approved |
FileZilla 3.32.0 | 37641 | Tuesday, April 3, 2018 | Approved |
FileZilla 3.31.0 | 60906 | Friday, February 23, 2018 | Approved |
FileZilla 3.30.0 | 65415 | Monday, January 8, 2018 | Approved |
FileZilla 3.29.0 | 55242 | Monday, November 6, 2017 | Approved |
FileZilla 3.28.0.20171005 | 26812 | Thursday, October 5, 2017 | Approved |
FileZilla 3.28.0 | 6854 | Tuesday, October 3, 2017 | Approved |
FileZilla 3.27.1 | 35786 | Thursday, September 7, 2017 | Approved |
FileZilla 3.26.2 | 82599 | Wednesday, June 21, 2017 | Approved |
FileZilla 3.26.1 | 406 | Wednesday, June 21, 2017 | Approved |
FileZilla 3.26.0 | 27803 | Thursday, June 1, 2017 | Approved |
FileZilla 3.25.2 | 27710 | Friday, May 12, 2017 | Approved |
FileZilla 3.25.1 | 28653 | Monday, March 20, 2017 | Approved |
FileZilla 3.25.0 | 8827 | Monday, March 13, 2017 | Approved |
FileZilla 3.24.1 | 14968 | Tuesday, February 21, 2017 | Approved |
FileZilla 3.24.0 | 17208 | Friday, February 3, 2017 | Approved |
FileZilla 3.23.0.2 | 42024 | Wednesday, December 7, 2016 | Approved |
FileZilla 3.23.0.1 | 4311 | Tuesday, December 6, 2016 | Approved |
FileZilla 3.23.0 | 2255 | Monday, December 5, 2016 | Approved |
FileZilla 3.22.2.2 | 35030 | Tuesday, November 1, 2016 | Approved |
FileZilla 3.22.2.1 | 1669 | Tuesday, November 1, 2016 | Approved |
FileZilla 3.22.2 | 2452 | Tuesday, November 1, 2016 | Approved |
FileZilla 3.22.1 | 23658 | Monday, October 3, 2016 | Approved |
FileZilla 3.22.0 | 4365 | Saturday, October 1, 2016 | Approved |
FileZilla 3.21.0 | 25583 | Tuesday, August 23, 2016 | Approved |
FileZilla 3.20.1 | 18618 | Wednesday, August 3, 2016 | Approved |
FileZilla 3.20.0 | 8626 | Wednesday, July 27, 2016 | Approved |
FileZilla 3.19.0 | 2099 | Monday, June 27, 2016 | Approved |
FileZilla 3.18.0 | 451 | Friday, May 27, 2016 | Approved |
FileZilla 3.17.0.1 | 429 | Monday, May 9, 2016 | Approved |
FileZilla 3.17.0 | 454 | Sunday, May 8, 2016 | Approved |
FileZilla 3.16.1 | 11869 | Wednesday, March 16, 2016 | Approved |
FileZilla 3.16.0 | 6267 | Monday, February 29, 2016 | Approved |
FileZilla 3.15.0.2 | 7320 | Wednesday, February 10, 2016 | Approved |
FileZilla 3.15.0 | 5674 | Saturday, January 30, 2016 | Approved |
FileZilla 3.14.1 | 29112 | Friday, October 16, 2015 | Approved |
FileZilla 3.14.0 | 8121 | Wednesday, September 16, 2015 | Approved |
FileZilla 3.13.1 | 6569 | Monday, August 24, 2015 | Approved |
FileZilla 3.13.0 | 4358 | Saturday, August 15, 2015 | Approved |
FileZilla 3.12.0.2 | 8188 | Sunday, July 12, 2015 | Approved |
FileZilla 3.11.0.2 | 7861 | Wednesday, June 3, 2015 | Approved |
FileZilla 3.11.0.1 | 2360 | Saturday, May 23, 2015 | Approved |
FileZilla 3.11.0 | 1364 | Wednesday, May 20, 2015 | Approved |
FileZilla 3.10.3.20150405 | 5615 | Sunday, April 5, 2015 | Approved |
FileZilla 3.10.3 | 2921 | Monday, March 30, 2015 | Approved |
FileZilla 3.10.2 | 5208 | Tuesday, March 3, 2015 | Approved |
FileZilla 3.10.1.1 | 5129 | Monday, February 2, 2015 | Approved |
FileZilla 3.10.1 | 1071 | Sunday, February 1, 2015 | Approved |
FileZilla 3.10.0.2 | 3031 | Saturday, January 17, 2015 | Approved |
FileZilla 3.10.0.1 | 1171 | Tuesday, January 13, 2015 | Approved |
FileZilla 3.10.0 | 1885 | Thursday, January 8, 2015 | Approved |
FileZilla 3.9.0.6 | 6584 | Thursday, October 23, 2014 | Approved |
FileZilla 3.9.0.5 | 4327 | Sunday, September 7, 2014 | Approved |
FileZilla 3.9.0.3 | 2961 | Thursday, August 14, 2014 | Approved |
FileZilla 3.9.0.2 | 1646 | Friday, August 1, 2014 | Approved |
FileZilla 3.9.0.1 | 1140 | Saturday, July 26, 2014 | Approved |
FileZilla 3.8.1 | 3462 | Sunday, June 1, 2014 | Approved |
FileZilla 3.8.0 | 3563 | Saturday, March 29, 2014 | Approved |
FileZilla 3.7.4.1 | 2268 | Wednesday, February 19, 2014 | Approved |
FileZilla 3.7.3 | 4855 | Thursday, August 8, 2013 | Approved |
FileZilla 3.7.2 | 559 | Thursday, August 8, 2013 | Approved |
FileZilla 3.7.1.1 | 1457 | Friday, July 5, 2013 | Approved |
FileZilla 3.7.1 | 897 | Thursday, June 20, 2013 | Approved |
FileZilla 3.7.0.2 | 782 | Saturday, June 8, 2013 | Approved |
FileZilla 3.7.0.1 | 978 | Saturday, May 11, 2013 | Approved |
FileZilla 3.6.0.2 | 1987 | Friday, December 21, 2012 | Approved |
FileZilla 3.6.0.1 | 798 | Monday, November 19, 2012 | Approved |
FileZilla 3.6.0 | 637 | Sunday, November 11, 2012 | Approved |
FileZilla 3.5.3 | 1599 | Saturday, February 25, 2012 | Approved |
FileZilla 3.5.2 | 608 | Friday, December 23, 2011 | Approved |
FileZilla 3.5.0 | 691 | Tuesday, August 23, 2011 | Approved |
FileZilla 3.4.0.1 | 639 | Tuesday, August 23, 2011 | Approved |
FileZilla 3.4.0 | 612 | Tuesday, August 23, 2011 | Approved |
This package has no dependencies.
Ground Rules:
- This discussion is only about FileZilla and the FileZilla package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or FileZilla, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.