Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

5,657,420

Downloads of v 3.10.3.20150405:

5,819

Last Update:

05 Apr 2015

Package Maintainer(s):

Software Author(s):

  • Tim Kosse
  • other FileZilla committers

Tags:

filezilla ftp admin

FileZilla

This is not the latest version of FileZilla available.

  • 1
  • 2
  • 3

3.10.3.20150405 | Updated: 05 Apr 2015

Downloads:

5,657,420

Downloads of v 3.10.3.20150405:

5,819

Maintainer(s):

Software Author(s):

  • Tim Kosse
  • other FileZilla committers

FileZilla 3.10.3.20150405

This is not the latest version of FileZilla available.

Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Tim Kosse, other FileZilla committers. The inclusion of Tim Kosse, other FileZilla committers trademark(s), if any, upon this webpage is solely to identify Tim Kosse, other FileZilla committers goods or services and not for commercial purposes.

  • 1
  • 2
  • 3

Some Checks Have Failed or Are Not Yet Complete

Not All Tests Have Passed


Validation Testing Unknown


Verification Testing Unknown


Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

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:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

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

3. Copy Your Script

choco upgrade filezilla -y --source="'INTERNAL REPO URL'" --version="'3.10.3.20150405'" [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="'INTERNAL REPO URL'" --version="'3.10.3.20150405'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install filezilla
  win_chocolatey:
    name: filezilla
    version: '3.10.3.20150405'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'filezilla' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '3.10.3.20150405'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller filezilla
{
    Name     = "filezilla"
    Version  = "3.10.3.20150405"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'filezilla':
  ensure   => '3.10.3.20150405',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

Package Approved

This package was approved as a trusted package on 05 Apr 2015.

Description

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.


tools\chocolateyInstall.ps1
$packageName = 'filezilla'
$version = '3.10.3'
$fileType = 'exe'
$silentArgs = '/S'
$url = "http://sourceforge.net/projects/filezilla/files/FileZilla_Client/${version}/FileZilla_${version}_win32-setup.exe/download"
$url64bit = "http://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.

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.

Add to Builder Version Downloads Last Updated Status
FileZilla 3.69.0 35271 Tuesday, April 15, 2025 Approved
FileZilla 3.68.1 236915 Monday, December 2, 2024 Approved
FileZilla 3.67.1 310414 Wednesday, July 10, 2024 Approved
FileZilla 3.67.0 218938 Tuesday, April 16, 2024 Approved
FileZilla 3.66.5 182601 Wednesday, February 7, 2024 Approved
FileZilla 3.66.4 129709 Wednesday, December 20, 2023 Approved
FileZilla 3.66.1 123079 Friday, November 3, 2023 Approved
FileZilla 3.66.0 54400 Monday, October 23, 2023 Approved
FileZilla 3.65.0 292177 Monday, July 10, 2023 Approved
FileZilla 3.64.0 316058 Wednesday, April 26, 2023 Approved
FileZilla 3.63.2.1 89292 Friday, March 3, 2023 Approved
FileZilla 3.63.2 33808 Friday, February 24, 2023 Approved
FileZilla 3.63.1 55043 Friday, January 27, 2023 Approved
FileZilla 3.63.0 19212 Wednesday, January 25, 2023 Approved
FileZilla 3.62.2 77397 Tuesday, November 22, 2022 Approved
FileZilla 3.62.1 24374 Thursday, November 17, 2022 Approved
FileZilla 3.62.0 48998 Thursday, October 27, 2022 Approved
FileZilla 3.61.0 63926 Monday, September 19, 2022 Approved
FileZilla 3.60.2 83638 Friday, July 22, 2022 Approved
FileZilla 3.60.1 74545 Wednesday, June 1, 2022 Approved
FileZilla 3.60.0 25323 Friday, May 27, 2022 Approved
FileZilla 3.59.0 72142 Friday, April 8, 2022 Approved
FileZilla 3.58.0 77934 Friday, February 11, 2022 Approved
FileZilla 3.57.0 76769 Friday, December 10, 2021 Approved
FileZilla 3.56.2 65742 Wednesday, October 27, 2021 Approved
FileZilla 3.56.1 19606 Tuesday, October 26, 2021 Approved
FileZilla 3.56.0 39472 Monday, October 11, 2021 Approved
FileZilla 3.55.1 103932 Monday, August 9, 2021 Approved
FileZilla 3.55.0 65728 Friday, July 9, 2021 Approved
FileZilla 3.54.1 103666 Thursday, May 13, 2021 Approved
FileZilla 3.54.0 8608 Wednesday, May 12, 2021 Approved
FileZilla 3.53.1 79881 Monday, March 29, 2021 Approved
FileZilla 3.53.0 55134 Tuesday, March 16, 2021 Approved
FileZilla 3.52.2 115558 Monday, January 18, 2021 Approved
FileZilla 3.52.0.5 36856 Friday, January 8, 2021 Approved
FileZilla 3.52.0.4 9409 Thursday, January 7, 2021 Approved
FileZilla 3.52.0.3 9248 Wednesday, January 6, 2021 Approved
FileZilla 3.52.0.2 2019 Wednesday, January 6, 2021 Approved
FileZilla 3.52.0.1 6682 Tuesday, January 5, 2021 Approved
FileZilla 3.52.0 13504 Monday, January 4, 2021 Approved
FileZilla 3.51.0 139199 Tuesday, October 20, 2020 Approved
FileZilla 3.50.0 99493 Thursday, August 27, 2020 Approved
FileZilla 3.49.1 59784 Wednesday, July 15, 2020 Approved
FileZilla 3.49.0 5691 Tuesday, July 14, 2020 Approved
FileZilla 3.48.1 52733 Tuesday, May 19, 2020 Approved
FileZilla 3.48.0 35362 Tuesday, April 28, 2020 Approved
FileZilla 3.47.2.1 48486 Wednesday, March 11, 2020 Approved
FileZilla 3.47.1 28898 Tuesday, February 25, 2020 Approved
FileZilla 3.47.0 8787 Monday, February 24, 2020 Approved
FileZilla 3.46.3 112826 Monday, December 23, 2019 Approved
FileZilla 3.46.2 10721 Friday, December 20, 2019 Approved
FileZilla 3.46.0 37957 Tuesday, November 26, 2019 Approved
FileZilla 3.45.1 61293 Monday, September 30, 2019 Approved
FileZilla 3.45.0 15936 Tuesday, September 24, 2019 Approved
FileZilla 3.44.2 47167 Tuesday, August 20, 2019 Approved
FileZilla 3.44.1 20998 Friday, August 9, 2019 Approved
FileZilla 3.43.0 49707 Thursday, June 27, 2019 Approved
FileZilla 3.42.1 55976 Friday, May 10, 2019 Approved
FileZilla 3.42.0 13597 Monday, May 6, 2019 Approved
FileZilla 3.41.2 50725 Monday, March 18, 2019 Approved
FileZilla 3.41.1 18080 Thursday, March 7, 2019 Approved
FileZilla 3.40.0 32914 Friday, January 25, 2019 Approved
FileZilla 3.39.0 38016 Friday, November 30, 2018 Approved
FileZilla 3.38.1 29994 Sunday, October 28, 2018 Approved
FileZilla 3.38.0 4894 Friday, October 26, 2018 Approved
FileZilla 3.37.4 24119 Saturday, October 6, 2018 Approved
FileZilla 3.36.0 34537 Monday, August 27, 2018 Approved
FileZilla 3.35.2 31684 Monday, August 6, 2018 Approved
FileZilla 3.35.1 25048 Monday, July 23, 2018 Approved
FileZilla 3.35.0 3525 Monday, July 23, 2018 Approved
FileZilla 3.34.0 30543 Sunday, June 17, 2018 Approved
FileZilla 3.33.0 37323 Monday, May 7, 2018 Approved
FileZilla 3.32.0 37832 Tuesday, April 3, 2018 Approved
FileZilla 3.31.0 61121 Friday, February 23, 2018 Approved
FileZilla 3.30.0 65602 Monday, January 8, 2018 Approved
FileZilla 3.29.0 55430 Monday, November 6, 2017 Approved
FileZilla 3.28.0.20171005 27034 Thursday, October 5, 2017 Approved
FileZilla 3.28.0 7080 Tuesday, October 3, 2017 Approved
FileZilla 3.27.1 36048 Thursday, September 7, 2017 Approved
FileZilla 3.26.2 82811 Wednesday, June 21, 2017 Approved
FileZilla 3.26.1 624 Wednesday, June 21, 2017 Approved
FileZilla 3.26.0 28037 Thursday, June 1, 2017 Approved
FileZilla 3.25.2 27876 Friday, May 12, 2017 Approved
FileZilla 3.25.1 28846 Monday, March 20, 2017 Approved
FileZilla 3.25.0 8995 Monday, March 13, 2017 Approved
FileZilla 3.24.1 15141 Tuesday, February 21, 2017 Approved
FileZilla 3.24.0 17401 Friday, February 3, 2017 Approved
FileZilla 3.23.0.2 42194 Wednesday, December 7, 2016 Approved
FileZilla 3.23.0.1 4505 Tuesday, December 6, 2016 Approved
FileZilla 3.23.0 2433 Monday, December 5, 2016 Approved
FileZilla 3.22.2.2 35187 Tuesday, November 1, 2016 Approved
FileZilla 3.22.2.1 1836 Tuesday, November 1, 2016 Approved
FileZilla 3.22.2 2655 Tuesday, November 1, 2016 Approved
FileZilla 3.22.1 23821 Monday, October 3, 2016 Approved
FileZilla 3.22.0 4519 Saturday, October 1, 2016 Approved
FileZilla 3.21.0 25740 Tuesday, August 23, 2016 Approved
FileZilla 3.20.1 18823 Wednesday, August 3, 2016 Approved
FileZilla 3.20.0 8823 Wednesday, July 27, 2016 Approved
FileZilla 3.19.0 2251 Monday, June 27, 2016 Approved
FileZilla 3.18.0 616 Friday, May 27, 2016 Approved
FileZilla 3.17.0.1 629 Monday, May 9, 2016 Approved
FileZilla 3.17.0 615 Sunday, May 8, 2016 Approved
FileZilla 3.16.1 12066 Wednesday, March 16, 2016 Approved
FileZilla 3.16.0 6442 Monday, February 29, 2016 Approved
FileZilla 3.15.0.2 7466 Wednesday, February 10, 2016 Approved
FileZilla 3.15.0 5848 Saturday, January 30, 2016 Approved
FileZilla 3.14.1 29309 Friday, October 16, 2015 Approved
FileZilla 3.14.0 8282 Wednesday, September 16, 2015 Approved
FileZilla 3.13.1 6750 Monday, August 24, 2015 Approved
FileZilla 3.13.0 4589 Saturday, August 15, 2015 Approved
FileZilla 3.12.0.2 8388 Sunday, July 12, 2015 Approved
FileZilla 3.11.0.2 8019 Wednesday, June 3, 2015 Approved
FileZilla 3.11.0.1 2533 Saturday, May 23, 2015 Approved
FileZilla 3.11.0 1519 Wednesday, May 20, 2015 Approved
FileZilla 3.10.3.20150405 5819 Sunday, April 5, 2015 Approved
FileZilla 3.10.3 3092 Monday, March 30, 2015 Approved
FileZilla 3.10.2 5386 Tuesday, March 3, 2015 Approved
FileZilla 3.10.1.1 5317 Monday, February 2, 2015 Approved
FileZilla 3.10.1 1240 Sunday, February 1, 2015 Approved
FileZilla 3.10.0.2 3201 Saturday, January 17, 2015 Approved
FileZilla 3.10.0.1 1329 Tuesday, January 13, 2015 Approved
FileZilla 3.10.0 2055 Thursday, January 8, 2015 Approved
FileZilla 3.9.0.6 6783 Thursday, October 23, 2014 Approved
FileZilla 3.9.0.5 4519 Sunday, September 7, 2014 Approved
FileZilla 3.9.0.3 3120 Thursday, August 14, 2014 Approved
FileZilla 3.9.0.2 1816 Friday, August 1, 2014 Approved
FileZilla 3.9.0.1 1376 Saturday, July 26, 2014 Approved
FileZilla 3.8.1 3681 Sunday, June 1, 2014 Approved
FileZilla 3.8.0 3750 Saturday, March 29, 2014 Approved
FileZilla 3.7.4.1 2431 Wednesday, February 19, 2014 Approved
FileZilla 3.7.3 5030 Thursday, August 8, 2013 Approved
FileZilla 3.7.2 756 Thursday, August 8, 2013 Approved
FileZilla 3.7.1.1 1647 Friday, July 5, 2013 Approved
FileZilla 3.7.1 1049 Thursday, June 20, 2013 Approved
FileZilla 3.7.0.2 941 Saturday, June 8, 2013 Approved
FileZilla 3.7.0.1 1161 Saturday, May 11, 2013 Approved
FileZilla 3.6.0.2 2203 Friday, December 21, 2012 Approved
FileZilla 3.6.0.1 952 Monday, November 19, 2012 Approved
FileZilla 3.6.0 829 Sunday, November 11, 2012 Approved
FileZilla 3.5.3 1792 Saturday, February 25, 2012 Approved
FileZilla 3.5.2 771 Friday, December 23, 2011 Approved
FileZilla 3.5.0 867 Tuesday, August 23, 2011 Approved
FileZilla 3.4.0.1 788 Tuesday, August 23, 2011 Approved
FileZilla 3.4.0 784 Tuesday, August 23, 2011 Approved

3.10.3.20150405: Fix 1223 error, add 64-bit version, remove obsolete uninstall script


This package has no dependencies.

Discussion for the FileZilla Package

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.
comments powered by Disqus