Downloads:
1,168,452
Downloads of v 3.3.2:
831
Last Update:
19 Jan 2016
Package Maintainer(s):
Software Author(s):
- Christophe Dumez
Tags:
qbittorrent torrent sharing p2p- Software Specific:
- Software Site
- Software License
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
qBittorrent
This is not the latest version of qBittorrent available.
- 1
- 2
- 3
3.3.2 | Updated: 19 Jan 2016
- 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:
1,168,452
Downloads of v 3.3.2:
831
Maintainer(s):
Software Author(s):
- Christophe Dumez
qBittorrent 3.3.2
This is not the latest version of qBittorrent available.
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Christophe Dumez. The inclusion of Christophe Dumez trademark(s), if any, upon this webpage is solely to identify Christophe Dumez goods or services and not for commercial purposes.
- 1
- 2
- 3
All Checks are Passing
3 Passing Tests
Deployment Method: Individual Install, Upgrade, & Uninstall
To install qBittorrent, run the following command from the command line or from PowerShell:
To upgrade qBittorrent, run the following command from the command line or from PowerShell:
To uninstall qBittorrent, run the following command from the command line or from PowerShell:
Deployment Method:
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
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
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: (additional options)
choco download qbittorrent --internalize --version=3.3.2 --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade qbittorrent -y --source="'INTERNAL REPO URL'" --version="'3.3.2'" [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 qbittorrent -y --source="'INTERNAL REPO URL'" --version="'3.3.2'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install qbittorrent
win_chocolatey:
name: qbittorrent
version: '3.3.2'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'qbittorrent' do
action :install
source 'INTERNAL REPO URL'
version '3.3.2'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller qbittorrent
{
Name = "qbittorrent"
Version = "3.3.2"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'qbittorrent':
ensure => '3.3.2',
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.
This package was approved as a trusted package on 19 Jan 2016.
qBittorrent is a free software cross-platform BitTorrent client GUI written with Qt4. The program uses libtorrent-rasterbar library for the torrent back-end (network communication) functionality. It is developed by Christophe Dumez, from the University of Technology of Belfort-Montbeliard in France. It was started in March 2006 and has been in active development ever since.
qBittorrent aims to have a small foot-print, to be powerful, intuitive and visually attractive going beyond the current functions widely provided by other applications. qBittorrent is an attempt to provide a μTorrent equivalent that is open-source and multi-platform adding a streaming-like function to let users download-and-play video files. qBittorrent is currently offering functionality comparable to more popular BitTorrent clients such as Vuze but without requiring the Java Virtual Machine. qBittorrent requires Python only for the search engine while other clients such as Deluge and BitTornado require it for the BitTorrent protocol itself. (from Wikipedia, 2013-04-18)
try {
$scriptPath = Split-Path $script:MyInvocation.MyCommand.Path
Import-Module (Join-Path $scriptPath 'getUninstallString.ps1')
$uninstallString = getUninstallString 'qbittorrent' 'UninstallString'
if ($uninstallString) {
Uninstall-ChocolateyPackage $packageName 'exe' '/S' $uninstallString
}
} catch {
Write-ChocolateyFailure $packageName $($_.Exception.Message)
throw
}
function getUninstallString($registryFolderName, $uninstallProperty) {
$registryPaths = @(
'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\',
'HKLM:\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall'
)
foreach ($regPath in $registryPaths) {
$appRegPath = Join-Path $regPath $registryFolderName
if (Test-Path $appRegPath) {
$key = Get-Item -LiteralPath $appRegPath
$regString = $key.GetValue($uninstallProperty, $null)
return $regString
}
}
}
Log in or click on link to see number of positives.
- qbittorrent.3.3.2.nupkg (7648dfbba7fc) - ## / 57
- qbittorrent_3.3.2_setup.exe (c5281d5bbe44) - ## / 56
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 |
---|---|---|---|---|
qBittorrent 5.0.1 | 15770 | Tuesday, October 29, 2024 | Approved | |
qBittorrent 5.0.0 | 23328 | Monday, September 30, 2024 | Approved | |
qBittorrent 4.6.7 | 19395 | Tuesday, September 17, 2024 | Approved | |
qBittorrent 4.6.6 | 23711 | Tuesday, August 20, 2024 | Approved | |
qBittorrent 4.6.5 | 52175 | Sunday, May 26, 2024 | Approved | |
qBittorrent 4.6.4 | 28887 | Monday, March 25, 2024 | Approved | |
qBittorrent 4.6.3 | 36103 | Wednesday, January 17, 2024 | Approved | |
qBittorrent 4.6.2 | 34219 | Tuesday, November 28, 2023 | Approved | |
qBittorrent 4.6.1 | 9447 | Tuesday, November 21, 2023 | Approved | |
qBittorrent 4.6.0 | 29974 | Monday, October 23, 2023 | Approved | |
qBittorrent 4.5.5 | 26980 | Wednesday, August 30, 2023 | Approved | |
qBittorrent 4.5.4 | 87239 | Monday, June 19, 2023 | Approved | |
qBittorrent 4.5.3 | 37837 | Monday, May 29, 2023 | Approved | |
qBittorrent 4.5.2 | 40330 | Tuesday, February 28, 2023 | Approved | |
qBittorrent 4.5.1 | 13563 | Sunday, February 12, 2023 | Approved | |
qBittorrent 4.5.0 | 27991 | Friday, December 16, 2022 | Approved | |
qBittorrent 4.4.5 | 32265 | Tuesday, August 30, 2022 | Approved | |
qBittorrent 4.4.4 | 8725 | Tuesday, August 23, 2022 | Approved | |
qBittorrent 4.4.3.1 | 28740 | Wednesday, May 25, 2022 | Approved | |
qBittorrent 4.4.3 | 5069 | Monday, May 23, 2022 | Approved | |
qBittorrent 4.4.2 | 23895 | Friday, March 25, 2022 | Approved | |
qBittorrent 4.4.1 | 19138 | Wednesday, February 16, 2022 | Approved | |
qBittorrent 4.4.0 | 20688 | Friday, January 7, 2022 | Approved | |
qBittorrent 4.3.9 | 28640 | Sunday, October 31, 2021 | Approved | |
qBittorrent 4.3.8 | 26065 | Monday, August 30, 2021 | Approved | |
qBittorrent 4.3.7 | 16265 | Wednesday, August 4, 2021 | Approved | |
qBittorrent 4.3.6 | 19473 | Sunday, June 27, 2021 | Approved | |
qBittorrent 4.3.5 | 24467 | Monday, May 3, 2021 | Approved | |
qBittorrent 4.3.4.1 | 17147 | Sunday, March 28, 2021 | Approved | |
qBittorrent 4.3.4 | 9185 | Wednesday, March 24, 2021 | Approved | |
qBittorrent 4.3.3 | 25132 | Wednesday, January 20, 2021 | Approved | |
qBittorrent 4.3.2 | 14831 | Monday, December 28, 2020 | Approved | |
qBittorrent 4.3.1 | 17000 | Wednesday, November 25, 2020 | Approved | |
qBittorrent 4.3.0.1 | 16791 | Thursday, October 22, 2020 | Approved | |
qBittorrent 4.3.0 | 5627 | Monday, October 19, 2020 | Approved | |
qBittorrent 4.2.5 | 38289 | Saturday, April 25, 2020 | Approved | |
qBittorrent 4.2.4 | 4665 | Thursday, April 23, 2020 | Approved | |
qBittorrent 4.2.3 | 11047 | Thursday, April 2, 2020 | Approved | |
qBittorrent 4.2.2 | 5760 | Tuesday, March 24, 2020 | Approved | |
qBittorrent 4.2.1 | 20552 | Wednesday, December 18, 2019 | Approved | |
qBittorrent 4.2.0 | 7584 | Friday, December 6, 2019 | Approved | |
qBittorrent 4.1.9.1 | 8989 | Monday, November 11, 2019 | Approved | |
qBittorrent 4.1.9 | 7205 | Monday, October 28, 2019 | Approved | |
qBittorrent 4.1.8 | 9507 | Friday, September 27, 2019 | Approved | |
qBittorrent 4.1.7 | 11936 | Tuesday, August 6, 2019 | Approved | |
qBittorrent 4.1.6 | 14821 | Monday, May 6, 2019 | Approved | |
qBittorrent 4.1.5.20190116 | 14042 | Wednesday, January 16, 2019 | Approved | |
qBittorrent 4.1.5 | 6216 | Tuesday, December 25, 2018 | Approved | |
qBittorrent 4.1.4 | 6955 | Thursday, November 22, 2018 | Approved | |
qBittorrent 4.1.3 | 9273 | Wednesday, September 19, 2018 | Approved | |
qBittorrent 4.1.2 | 6654 | Monday, August 13, 2018 | Approved | |
qBittorrent 4.1.1 | 8985 | Monday, May 28, 2018 | Approved | |
qBittorrent 4.1.0 | 5114 | Saturday, May 5, 2018 | Approved | |
qBittorrent 4.0.4 | 8655 | Friday, February 16, 2018 | Approved | |
qBittorrent 4.0.3 | 6846 | Monday, December 18, 2017 | Approved | |
qBittorrent 4.0.2 | 3662 | Friday, December 1, 2017 | Approved | |
qBittorrent 4.0.1 | 2980 | Wednesday, November 22, 2017 | Approved | |
qBittorrent 4.0.0 | 1496 | Monday, November 20, 2017 | Approved | |
qBittorrent 3.3.16 | 6796 | Friday, September 8, 2017 | Approved | |
qBittorrent 3.3.15 | 4228 | Friday, August 4, 2017 | Approved | |
qBittorrent 3.3.14 | 2732 | Thursday, July 20, 2017 | Approved | |
qBittorrent 3.3.13 | 4625 | Thursday, June 1, 2017 | Approved | |
qBittorrent 3.3.12 | 4760 | Friday, April 7, 2017 | Approved | |
qBittorrent 3.3.11.20170322 | 2255 | Wednesday, March 22, 2017 | Approved | |
qBittorrent 3.3.11 | 2601 | Saturday, March 4, 2017 | Approved | |
qBittorrent 3.3.10 | 4933 | Sunday, December 18, 2016 | Approved | |
qBittorrent 3.3.9 | 1156 | Thursday, December 15, 2016 | Approved | |
qBittorrent 3.3.8 | 780 | Wednesday, December 14, 2016 | Approved | |
qBittorrent 3.3.7.20161205 | 1525 | Monday, December 5, 2016 | Approved | |
qBittorrent 3.3.7.20161201 | 1822 | Thursday, December 1, 2016 | Approved | |
qBittorrent 3.3.7.20161130 | 764 | Wednesday, November 30, 2016 | Approved | |
qBittorrent 3.3.7 | 3779 | Wednesday, October 5, 2016 | Approved | |
qBittorrent 3.3.6 | 4481 | Wednesday, July 20, 2016 | Approved | |
qBittorrent 3.3.5 | 437 | Monday, June 20, 2016 | Approved | |
qBittorrent 3.3.4 | 2542 | Tuesday, March 29, 2016 | Approved | |
qBittorrent 3.3.3 | 3280 | Thursday, January 21, 2016 | Approved | |
qBittorrent 3.3.2 | 831 | Tuesday, January 19, 2016 | Approved | |
qBittorrent 3.3.1 | 2333 | Tuesday, December 8, 2015 | Approved | |
qBittorrent 3.3.0 | 1196 | Sunday, November 29, 2015 | Approved | |
qBittorrent 3.2.5 | 1858 | Saturday, October 31, 2015 | Approved | |
qBittorrent 3.2.4 | 1593 | Saturday, October 10, 2015 | Approved | |
qBittorrent 3.2.3 | 2750 | Sunday, August 2, 2015 | Approved | |
qBittorrent 3.2.2 | 520 | Saturday, August 1, 2015 | Approved | |
qBittorrent 3.2.1 | 1482 | Saturday, July 11, 2015 | Approved | |
qBittorrent 3.2.0 | 1912 | Sunday, May 10, 2015 | Approved | |
qBittorrent 3.1.12 | 1668 | Monday, February 23, 2015 | Approved | |
qBittorrent 3.1.11 | 1797 | Wednesday, October 22, 2014 | Approved | |
qBittorrent 3.1.10.20140925 | 798 | Thursday, September 25, 2014 | Approved | |
qBittorrent 3.1.10 | 477 | Thursday, September 25, 2014 | Approved | |
qBittorrent 3.1.9.2 | 1107 | Tuesday, April 29, 2014 | Approved | |
qBittorrent 3.1.9.1 | 481 | Monday, April 28, 2014 | Approved | |
qBittorrent 3.1.9 | 676 | Saturday, March 1, 2014 | Approved | |
qBittorrent 3.1.8 | 590 | Monday, February 3, 2014 | Approved | |
qBittorrent 3.1.5 | 576 | Saturday, January 18, 2014 | Approved | |
qBittorrent 3.1.4 | 635 | Monday, December 30, 2013 | Approved | |
qBittorrent 3.1.3 | 567 | Wednesday, November 20, 2013 | Approved | |
qBittorrent 3.1.2 | 533 | Wednesday, November 6, 2013 | Approved | |
qBittorrent 3.1.1.1 | 527 | Monday, October 28, 2013 | Approved | |
qBittorrent 3.1.0 | 513 | Sunday, October 13, 2013 | Approved | |
qBittorrent 3.0.11 | 559 | Wednesday, July 31, 2013 | Approved | |
qBittorrent 3.0.10.0 | 524 | Thursday, July 11, 2013 | Approved | |
qBittorrent 3.0.9.01 | 584 | Thursday, June 6, 2013 | Approved | |
qBittorrent 3.0.9.0 | 544 | Thursday, April 18, 2013 | Approved |
This package has no dependencies.
Ground Rules:
- This discussion is only about qBittorrent and the qBittorrent 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 qBittorrent, 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.