Downloads:
682,914
Downloads of v 1.3.20:
42,375
Last Update:
18 Oct 2022
Package Maintainer(s):
Software Author(s):
- Samuel Vasko
Tags:
cmder console terminal cli foss- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Cmder
This is not the latest version of Cmder available.
- 1
- 2
- 3
1.3.20 | Updated: 18 Oct 2022
- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
682,914
Downloads of v 1.3.20:
42,375
Maintainer(s):
Software Author(s):
- Samuel Vasko
Cmder 1.3.20
This is not the latest version of Cmder available.
- 1
- 2
- 3
Some Checks Have Failed or Are Not Yet Complete
Not All Tests Have Passed
Deployment Method: Individual Install, Upgrade, & Uninstall
To install Cmder, run the following command from the command line or from PowerShell:
To upgrade Cmder, run the following command from the command line or from PowerShell:
To uninstall Cmder, 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 cmder --internalize --version=1.3.20 --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 cmder -y --source="'INTERNAL REPO URL'" --version="'1.3.20'" [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 cmder -y --source="'INTERNAL REPO URL'" --version="'1.3.20'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install cmder
win_chocolatey:
name: cmder
version: '1.3.20'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'cmder' do
action :install
source 'INTERNAL REPO URL'
version '1.3.20'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller cmder
{
Name = "cmder"
Version = "1.3.20"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'cmder':
ensure => '1.3.20',
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 20 Oct 2022.
Cmder is a software package created out of pure frustration over absence of usable console emulator on Windows. It is based on ConEmu with major config overhaul. Monokai color scheme, amazing clink and custom prompt layout.
The main advantage of Cmder is portability. It is designed to be totally self-contained with no external dependencies, that is makes it great for USB Sticks or Dropbox. So you can carry your console, aliases and binaries (like wget, curl and git) with you anywhere.
Combines utility of 3 distinct tools:
- Console emulator = Conemu
- Cmd.exe enhancements = clink
- Unix tools on windows = msysgit
Notes
This package uncompresses to 250 MB and includes Unix commands via bundled msysgit.
See cmdermini (8 MB) for basic console without bundled msysgit.
function Uninstall-ChocolateyPath {
param(
[string] $pathToUninstall,
[System.EnvironmentVariableTarget] $pathType = [System.EnvironmentVariableTarget]::User
)
Write-Debug "Running 'Uninstall-ChocolateyPath' with pathToUninstall:`'$pathToUninstall`'";
#get the PATH variable
$envPath = $env:PATH
#$envPath = [Environment]::GetEnvironmentVariable('Path', $pathType)
if (!$envPath.ToLower().Contains($pathToUninstall.ToLower())) {
Write-Host "PATH environment variable does not have $pathToUninstall in it."
return
}
Write-Host "PATH environment variable has $pathToUninstall in it. Removing..."
$actualPath = [Environment]::GetEnvironmentVariable('Path', $pathType)
# escape regex metachars, match possible backslash and item separator at eol
$pathToUninstallRegex = ($pathToUninstall -replace '([\\().])', '\$1') + '\\?(;|$)'
# remove pathToUninstall from actualPath
$actualPath = $actualPath -replace "$pathToUninstallRegex", ''
if ($pathType -eq [System.EnvironmentVariableTarget]::Machine) {
$psArgs = "[Environment]::SetEnvironmentVariable('Path',`'$actualPath`', `'$pathType`')"
Start-ChocolateyProcessAsAdmin "$psArgs"
}
else {
[Environment]::SetEnvironmentVariable('Path', $actualPath, $pathType)
}
# remove from path of current powershell session
$envPSPath = $env:PATH
$env:Path = $envPSPath -replace "$pathToUninstallRegex", ''
}
md5: 7D4CA16C586738C98AB8DF3F7C97EF48 | sha1: F968298EEB94F0E9ACE895980BF4BEC94D57FAF2 | sha256: A0968A621E097A97081FD197BA2805B4AF2F55C4E092492396EF9290ABFED471 | sha512: 00A92379217E9B2D1B581BD9130C2935E0F4AF3A30A82A8EEA658696B4DE60D50E76D7462597FDDD1CEFF9132F58596F7A078402B95A49C0056A56776F849491
$ErrorActionPreference = 'Stop'
$toolsPath = Split-Path -parent $MyInvocation.MyCommand.Definition
$unScriptPath = Join-Path $toolsPath "Uninstall-ChocolateyPath.psm1"
$installPath = Join-Path (Get-ToolsLocation) $env:ChocolateyPackageName
Import-Module $unScriptPath
Uninstall-ChocolateyPath $installPath 'User'
if (Test-Path $installPath) {
Remove-Item -path $installPath -Recurse -Force
}
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.
The embedded software have been downloaded from the listed download
location on <https://github.com/cmderdev/cmder/releases/tag/v1.3.20>
and can be verified by doing the following:
1. Download the following <https://github.com/cmderdev/cmder/releases/download/v1.3.20/cmder.7z>
2. Get the checksum using one of the following methods:
- Using powershell function 'Get-FileHash'
- Use chocolatey utility 'checksum.exe'
3. The checksums should match the following:
checksum type: sha256
checksum: A0968A621E097A97081FD197BA2805B4AF2F55C4E092492396EF9290ABFED471
The file 'LICENSE.txt' has been obtained from <https://github.com/cmderdev/cmder/blob/master/LICENSE>
MIT License
Copyright (c) 2017 Samuel Vasko
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Log in or click on link to see number of positives.
- Cmder.1.3.20.nupkg (83589478f127) - ## / 60
- cmder.7z (a0968a621e09) - ## / 36
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 |
---|---|---|---|---|
Cmder 1.3.21 | 10355 | Thursday, May 4, 2023 | Approved | |
Cmder 1.3.20 | 42375 | Tuesday, October 18, 2022 | Approved | |
Cmder 1.3.19 | 143752 | Monday, January 17, 2022 | Approved | |
Cmder 1.3.18 | 56563 | Friday, March 26, 2021 | Approved | |
Cmder 1.3.17 | 27238 | Wednesday, December 23, 2020 | Approved | |
Cmder 1.3.16 | 57625 | Friday, July 31, 2020 | Approved | |
Cmder 1.3.15 | 17835 | Saturday, June 27, 2020 | Approved | |
Cmder 1.3.14 | 50838 | Thursday, January 9, 2020 | Approved | |
Cmder 1.3.13 | 17367 | Monday, November 25, 2019 | Approved | |
Cmder 1.3.12 | 36750 | Wednesday, August 21, 2019 | Approved | |
Cmder 1.3.11 | 61611 | Monday, December 24, 2018 | Approved | |
Cmder 1.3.10 | 6797 | Saturday, December 1, 2018 | Approved | |
Cmder 1.3.9 | 311 | Thursday, November 29, 2018 | Approved | |
Cmder 1.3.8 | 6453 | Tuesday, November 13, 2018 | Approved | |
Cmder 1.3.7 | 1387 | Saturday, November 10, 2018 | Approved | |
Cmder 1.3.6 | 5139 | Thursday, October 25, 2018 | Approved | |
Cmder 1.3.5 | 46137 | Sunday, February 11, 2018 | Approved | |
Cmder 1.3.4 | 338 | Thursday, March 29, 2018 | Approved | |
Cmder 1.3.3 | 17822 | Friday, November 3, 2017 | Approved | |
Cmder 1.3.2 | 33841 | Friday, December 16, 2016 | Approved | |
Cmder 1.3.1.20161216 | 375 | Friday, December 16, 2016 | Approved | |
Cmder 1.3.1 | 4611 | Wednesday, November 30, 2016 | Approved | |
Cmder 1.3.0.20160620-beta | 974 | Wednesday, June 22, 2016 | Exempted | |
Cmder 1.3.0 | 10945 | Wednesday, July 20, 2016 | Approved | |
Cmder 1.3.0-beta | 454 | Saturday, May 21, 2016 | Exempted | |
Cmder 1.2.9-beta | 369 | Saturday, May 21, 2016 | Exempted | |
Cmder 1.1.4.102 | 502 | Wednesday, June 22, 2016 | Approved |
Copyright (c) 2016 Samuel Vasko
Software changelog
What's Changed
- Fix #2654: blank space added between {cwd} and version_control variable by @geekrumper in https://github.com/cmderdev/cmder/pull/2661
- Fix #2659: Use get_hg_branch() to get Mercurial branch information. by @vsajip in https://github.com/cmderdev/cmder/pull/2660
- Fix git worktree by @daxgames in https://github.com/cmderdev/cmder/pull/2680
- Remove set term=cygwin in init.bat by @daxgames in https://github.com/cmderdev/cmder/pull/2688
- Fix find git by @daxgames in https://github.com/cmderdev/cmder/pull/2689
- Clink 1.3.15 by @daxgames in https://github.com/cmderdev/cmder/pull/2691
- Update Git for Windows and Clink by @goodusername123 in https://github.com/cmderdev/cmder/pull/2695
- Add optional clink async prompt update for svn status by @Mikaz-fr in https://github.com/cmderdev/cmder/pull/2703
- Update Clink and Git by @daxgames in https://github.com/cmderdev/cmder/pull/2720
- Better bat by @daxgames in https://github.com/cmderdev/cmder/pull/2742
- Related to #2654: Move space from "{git}{hg}{svn}" to individual parts by @DRSDavidSoft in https://github.com/cmderdev/cmder/pull/2738
- Update Clink, Clink Completions and ConEmu dependencies by @DRSDavidSoft in https://github.com/cmderdev/cmder/pull/2739
- Minimal comspec detection (related to #2744) by @DRSDavidSoft in https://github.com/cmderdev/cmder/pull/2745
- Use TaskDialog instead of MessageBox (Fixes Builds) by @DRSDavidSoft in https://github.com/cmderdev/cmder/pull/2746
- Add bin\cmder_shell.cmd by @DRSDavidSoft in https://github.com/cmderdev/cmder/pull/2747
- Fix build system scripts (closes #2723) by @DRSDavidSoft in https://github.com/cmderdev/cmder/pull/2748
- Custom option for launcher title by @DRSDavidSoft in https://github.com/cmderdev/cmder/pull/2752
- Use Github Actions to build and release by @MartiUK in https://github.com/cmderdev/cmder/pull/2725
- Minor edits to AppVeyor build by @DRSDavidSoft in https://github.com/cmderdev/cmder/pull/2753
- Fix mini edition build by @DRSDavidSoft in https://github.com/cmderdev/cmder/pull/2754
- Re-factor the build script to distinguish each step by @DRSDavidSoft in https://github.com/cmderdev/cmder/pull/2758
- Updates to
3
vendored dependencies by @github-actions in https://github.com/cmderdev/cmder/pull/2760
New Contributors
- @geekrumper made their first contribution in https://github.com/cmderdev/cmder/pull/2661
- @vsajip made their first contribution in https://github.com/cmderdev/cmder/pull/2660
- @goodusername123 made their first contribution in https://github.com/cmderdev/cmder/pull/2695
- @github-actions made their first contribution in https://github.com/cmderdev/cmder/pull/2760
Full Changelog: https://github.com/cmderdev/cmder/compare/v1.3.19...v1.3.20
-
- vcredist2010 (≥ 10.0.40219.2)
Ground Rules:
- This discussion is only about Cmder and the Cmder 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 Cmder, 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.