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...

Downloads:
384,923
Downloads of v 0.5.11:
1,123
Last Update:
28 Nov 2014
Package Maintainer(s):
Software Author(s):
- Alexander Koblov
- Przemyslaw Nagay
Tags:
double commander disk manager- Software Specific:
- Software Site
- Software License
- Package Specific:
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download

Double Commander
This is not the latest version of Double Commander available.
- Software Specific:
- Software Site
- Software License
- Package Specific:
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
384,923
Downloads of v 0.5.11:
1,123
Maintainer(s):
Software Author(s):
- Alexander Koblov
- Przemyslaw Nagay
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.
Double Commander 0.5.11
This is not the latest version of Double Commander available.
Some Checks Have Failed or Are Not Yet Complete
1 Test Unknown and 1 Passing Test
To install Double Commander, run the following command from the command line or from PowerShell:
To upgrade Double Commander, run the following command from the command line or from PowerShell:
To uninstall Double Commander, 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://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 doublecmd --internalize --version=0.5.11 --source=https://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://chocolatey.org/api/v2)
4. Choose your deployment method:
choco upgrade doublecmd -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 doublecmd -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 doublecmd installed
win_chocolatey:
name: doublecmd
state: present
version: 0.5.11
source: STEP 3 URL
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
Coming early 2020! Central Managment Reporting available now! More information...
chocolatey_package 'doublecmd' do
action :install
version '0.5.11'
source 'STEP 3 URL'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
Chocolatey::Ensure-Package
(
Name: doublecmd,
Version: 0.5.11,
Source: STEP 3 URL
);
Requires Otter Chocolatey Extension. See docs at https://inedo.com/den/otter/chocolatey.
cChocoPackageInstaller doublecmd
{
Name = 'doublecmd'
Ensure = 'Present'
Version = '0.5.11'
Source = 'STEP 3 URL'
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'doublecmd':
provider => 'chocolatey',
ensure => '0.5.11',
source => 'STEP 3 URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
salt '*' chocolatey.install doublecmd version="0.5.11" 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.
This package was approved by moderator gep13 on 28 Nov 2014.
Double Commander is a cross platform open source file manager with two panels side by side. It is inspired by Total Commander and features some new ideas.
$packageName = 'doublecmd'
$installerType = 'exe' #only one of these two: exe or msi
$url = 'http://downloads.sourceforge.net/project/doublecmd/DC%20for%20Windows%2032%20bit/Double%20Commander%200.5.11%20beta/doublecmd-0.5.11.i386-win32.exe'
$url64 = 'http://downloads.sourceforge.net/project/doublecmd/DC%20for%20Windows%2064%20bit/Double%20Commander%200.5.11%20beta/doublecmd-0.5.11.x86_64-win64.exe'
$silentArgs = '/VERYSILENT /SP- /SUPPRESSMSGBOXES /NORESTART /RESTARTAPPLICATIONS'
$validExitCodes = @(0) #please insert other valid exit codes here, exit codes for ms http://msdn.microsoft.com/en-us/library/aa368542(VS.85).aspx
# main helpers - these have error handling tucked into them already
# installer, will assert administrative rights
Install-ChocolateyPackage "$packageName" "$installerType" "$silentArgs" "$url" "$url64" -validExitCodes $validExitCodes
Log in or click on link to see number of positives.
- doublecmd.0.5.11.nupkg (c16285e16708) - ## / 56
- doublecmd-0.5.11.x86_64-win64.exe (b0673353bc80) - ## / 57
- doublecmd-0.5.11.i386-win32.exe (95551820a0bb) - ## / 54
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 |
---|---|---|---|
Double Commander for Windows 0.9.10 | 3878 | Sunday, January 10, 2021 | Approved |
Double Commander for Windows 0.9.9 | 37986 | Monday, June 29, 2020 | Approved |
Double Commander for Windows 0.9.8 | 33086 | Saturday, February 1, 2020 | Approved |
Double Commander for Windows 0.9.7 | 9978 | Thursday, January 9, 2020 | Approved |
Double Commander for Windows 0.9.6 | 78361 | Sunday, September 1, 2019 | Approved |
Double Commander for Windows 0.9.5 | 43488 | Friday, July 12, 2019 | Approved |
Double Commander for Windows 0.9.3 | 41753 | Wednesday, May 22, 2019 | Approved |
Double Commander for Windows 0.9.2 | 41210 | Tuesday, April 2, 2019 | Approved |
Double Commander for Windows 0.9.1 | 10482 | Sunday, February 17, 2019 | Approved |
Double Commander for Windows 0.9.0.20190213 | 1635 | Wednesday, February 13, 2019 | Approved |
Double Commander for Windows 0.9.0 | 1877 | Sunday, February 10, 2019 | Approved |
Double Commander for Windows 0.8.4 | 33219 | Saturday, August 25, 2018 | Approved |
Double Commander for Windows 0.8.3 | 10289 | Sunday, July 1, 2018 | Approved |
Double Commander for Windows 0.8.2.20180406 | 16346 | Friday, April 6, 2018 | Approved |
Double Commander for Windows 0.8.2 | 2923 | Saturday, February 24, 2018 | Approved |
Double Commander for Windows 0.8.1 | 2513 | Sunday, December 24, 2017 | Approved |
Double Commander for Windows 0.8.0 | 2573 | Monday, December 11, 2017 | Approved |
Double Commander for Windows 0.7.8 | 3390 | Wednesday, April 19, 2017 | Approved |
Double Commander 0.7.7 | 3707 | Sunday, February 19, 2017 | Approved |
Double Commander 0.7.1 | 2584 | Sunday, April 3, 2016 | Approved |
Double Commander 0.6.6 | 720 | Monday, January 18, 2016 | Approved |
Double Commander 0.5.11 | 1123 | Friday, November 28, 2014 | Approved |
doublecmd 0.5.10 | 642 | Thursday, June 5, 2014 | Approved |
doublecmd 0.5.7 | 559 | Saturday, November 2, 2013 | Approved |
doublecmd 0.5.6 | 416 | Sunday, September 8, 2013 | Approved |
This package has no dependencies.
Ground Rules:
- This discussion is only about Double Commander and the Double Commander 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 Double Commander, 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.