Downloads:
796,089
Downloads of v 1.3.0.20160620-beta:
1,050
Last Update:
22 Jun 2016
Package Maintainer(s):
Software Author(s):
- Samuel Vasko
Tags:
console terminal cli conemu clink- 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 a prerelease version of Cmder.
- 1
- 2
- 3
1.3.0.20160620-beta | Updated: 22 Jun 2016
- 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:
796,089
Downloads of v 1.3.0.20160620-beta:
1,050
Maintainer(s):
Software Author(s):
- Samuel Vasko
Cmder 1.3.0.20160620-beta
This is a prerelease version of Cmder.
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Samuel Vasko. The inclusion of Samuel Vasko trademark(s), if any, upon this webpage is solely to identify Samuel Vasko 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 Passed
Verification Testing Passed
DetailsScan Testing Resulted in Flagged:
This package was submitted (and approved) prior to automated virus scanning integration into the package moderation processs.
We recommend clicking the "Details" link to make your own decision on installing this package.
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.0.20160620-beta --pre --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.0.20160620-beta'" --prerelease [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.0.20160620-beta'" --prerelease
$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.0.20160620-beta'
source: INTERNAL REPO URL
state: present
allow_prerelease: yes
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.0.20160620-beta'
options '--prerelease'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller cmder
{
Name = "cmder"
Version = "1.3.0.20160620-beta"
Source = "INTERNAL REPO URL"
chocoParams = "--prerelease"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'cmder':
ensure => '1.3.0.20160620-beta',
install_options => ['--prerelease'],
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.
Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...
This package is exempt from moderation. While it is likely safe for you, there is more risk involved.
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
This package uncompresses to 250 MB and includes Unix commands via bundled msysgit.
See cmdermini (7 MB) for basic console without bundled msysgit.
Install location
This package installs into the cmder
subdirectory of the path defined in the environment variable:
- <chocolatey-0.9.10:
$env:ChocolateyBinRoot
- >=chocolatey-0.9.10:
$env:ChocolateyToolsLocation
To determine installed chocolatey version: choco -v
Note that when upgrading to >=0.9.10, if $env:ChocolateyBinRoot
exists, the value will be preserved and variable updated to new name. If neither variable exists, the default location is used: $env:SystemDrive\tools
$packageName = 'cmder'
$toolsPath = Split-Path -Parent $MyInvocation.MyCommand.Definition
$unPath = Join-Path $toolsPath 'Uninstall-ChocolateyPath.psm1'
$binRoot = Get-BinRoot
$installPath = Join-Path $binRoot $packageName
Import-Module $unPath
Uninstall-ChocolateyPath $installPath 'User'
if (Test-Path $installPath) {
Remove-Item -Path $installPath -Recurse -Force
}
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", ''
}
Log in or click on link to see number of positives.
- Microsoft.IdentityModel.Clients.ActiveDirectory.dll (160b556e0a3f) - ## / 57
- Microsoft.IdentityModel.Clients.ActiveDirectory.WindowsForms.dll (f5ff405e464d) - ## / 57
- antiword.exe (736a5df84846) - ## / 68
- bunzip2.exe (621f344a7cb2) - ## / 56
- bzip2recover.exe (7b8581717031) - ## / 56
- connect.exe (3c7272910818) - ## / 65
- create-shortcut.exe (a8553154b771) - ## / 57
- edit.dll (0c39d2140b2f) - ## / 69
- edit_test.exe (22afccc5c690) - ## / 73
- edit_test_dll.exe (d1cbf49e39f8) - ## / 71
- i686-w64-mingw32-agrep.exe (33b08db5352d) - ## / 70
- libbz2-1.dll (1b9495095c04) - ## / 70
- libcharset-1.dll (6e5f0859d5fa) - ## / 71
- libffi-6.dll (b21e7ea9b342) - ## / 64
- libgmp-10.dll (6b80fea16b2f) - ## / 57
- libgmpxx-4.dll (1c00fc99e2eb) - ## / 58
- libhogweed-4-1.dll (d8ad4607535e) - ## / 57
- libiconv-2.dll (bd13bab79752) - ## / 69
- libminizip-1.dll (cab152fca478) - ## / 70
- libnettle-6-1.dll (d75ed3660e57) - ## / 56
- librtmp-1.dll (3054646a6fd0) - ## / 64
- libssh2-1.dll (82fdb156cbe9) - ## / 57
- libsystre-0.dll (ddfdc4cd3bce) - ## / 71
- libtasn1-6.dll (8d53079cf43f) - ## / 65
- libtre-5.dll (ca70e09d0e89) - ## / 69
- pdftotext.exe (0639a0537a52) - ## / 67
- pkcs1-conv.exe (6d42f13ada56) - ## / 56
- sexp-conv.exe (64a88fdc9ecf) - ## / 57
- tcl86.dll (813849ca6ab5) - ## / 57
- tclsh.exe (53c4effd75c3) - ## / 57
- tk86.dll (4d5e39a00913) - ## / 57
- WhoUses.exe (08e0cfe7ac8d) - ## / 56
- wish.exe (b36c09b6c3c8) - ## / 58
- zlib1.dll (72f30ba8428d) - ## / 71
- tcldde14.dll (9f0aa26f7969) - ## / 57
- itcl404.dll (6fc1c200004e) - ## / 57
- tclreg13.dll (ea3f8a40a9f4) - ## / 57
- sqlite3110.dll (600898589323) - ## / 57
- thread273.dll (9a2484a62cd1) - ## / 56
- awk.exe (135761e53c56) - ## / 65
- bash.exe (4394adc06669) - ## / 56
- bunzip2.exe (bd768696efd2) - ## / 70
- bzip2recover.exe (930f4906ae31) - ## / 70
- captoinfo.exe (1452879ae186) - ## / 58
- clear.exe (075ec616198b) - ## / 58
- cmp.exe (d942ca97cc7a) - ## / 71
- column.exe (1cbb97a6c84d) - ## / 66
- d2u.exe (921b16671066) - ## / 57
- dash.exe (f6376c17793d) - ## / 72
- diff.exe (30bb5f100a42) - ## / 71
- diff3.exe (8f6af1da3745) - ## / 71
- file.exe (3b28368d6cf1) - ## / 56
- find.exe (f1fa2eeaf513) - ## / 71
- funzip.exe (8360a070fb49) - ## / 71
- gawk-4.1.3.exe (9881a32f1991) - ## / 60
- gdbmtool.exe (ad72129faf7c) - ## / 72
- gdbm_dump.exe (b09ed67bbff4) - ## / 72
- gdbm_load.exe (896016c04815) - ## / 72
- getopt.exe (9cf6599fb5a1) - ## / 67
- gpg.exe (0f37d68f5a64) - ## / 58
- gpgsplit.exe (09b39cb61ded) - ## / 58
- gpgv.exe (bc5628b77a16) - ## / 57
- grep.exe (9f3ea9de9cf8) - ## / 57
- iconv.exe (116c0858939a) - ## / 72
- infocmp.exe (cab483325647) - ## / 57
- less.exe (4750fd8f5322) - ## / 60
- lessecho.exe (ab3f927722e3) - ## / 67
- lesskey.exe (fd3d97bfc8f1) - ## / 64
- locate.exe (b821ea2286cb) - ## / 73
- mintty.exe (d16422ea1848) - ## / 68
- msys-apr-1-0.dll (f2788acaec24) - ## / 66
- msys-aprutil-1-0.dll (a30500fc952a) - ## / 67
- msys-asn1-8.dll (ed3ae73dd33a) - ## / 62
- msys-blkid-1.dll (b11a1a638439) - ## / 58
- msys-bz2-1.dll (67dc302fe27a) - ## / 58
- msys-charset-1.dll (fa59261e1321) - ## / 56
- msys-com_err-1.dll (603539add1af) - ## / 61
- msys-edit-0.dll (cb549176e7da) - ## / 55
- msys-fdisk-1.dll (4a6db80bf946) - ## / 58
- msys-ffi-6.dll (03c2f5b79454) - ## / 55
- msys-formw6.dll (fdbf58ce9e8f) - ## / 57
- msys-gdbm-4.dll (58369a33f1c9) - ## / 58
- msys-gdbm_compat-4.dll (34fb8cc76643) - ## / 65
- msys-gssapi-3.dll (2d837cba67e5) - ## / 61
- msys-hdb-9.dll (432d0b8c3523) - ## / 62
- msys-heimbase-1.dll (b2b92642154c) - ## / 61
- msys-heimntlm-0.dll (e5f73627e785) - ## / 62
- msys-history6.dll (b41edf4ca035) - ## / 57
- msys-hx509-5.dll (4e69e565d991) - ## / 61
- msys-iconv-2.dll (c91d9bb4a726) - ## / 54
- msys-idn-11.dll (cf7528a9da18) - ## / 55
- msys-intl-8.dll (cdd125ef0759) - ## / 58
- msys-kadm5clnt-7.dll (91b198de0e49) - ## / 60
- msys-kadm5srv-8.dll (0f57b7ad7796) - ## / 58
- msys-kafs-0.dll (9325da048c00) - ## / 58
- msys-kdc-2.dll (bc2b881feda9) - ## / 61
- msys-krb5-26.dll (f31a72f3d36b) - ## / 62
- msys-magic-1.dll (3d0f8cc12dd4) - ## / 55
- msys-menuw6.dll (d170d5174b7a) - ## / 57
- msys-metalink-3.dll (bc4842baabbc) - ## / 57
- msys-ncurses++w6.dll (788d9d67fa3f) - ## / 55
- msys-ncursesw6.dll (f1f5f4ac39ba) - ## / 57
- msys-otp-0.dll (2329df761826) - ## / 60
- msys-p11-kit-0.dll (7e2a5045837d) - ## / 58
- msys-panelw6.dll (2d9705921bd9) - ## / 56
- msys-pcre-1.dll (8a9351cf9449) - ## / 58
- msys-perl5_22.dll (b9e7b2352f1f) - ## / 54
- msys-readline6.dll (bf8201bce861) - ## / 55
- msys-roken-18.dll (d48d87f33d49) - ## / 61
- msys-sasl2-3.dll (53ce23054a5d) - ## / 67
- msys-serf-1-0.dll (c79a8eb0e532) - ## / 55
- msys-sl-0.dll (4eeb378ceb88) - ## / 62
- msys-smartcols-1.dll (c0ec37ed15cf) - ## / 56
- msys-sqlite3-0.dll (2c689e7903ed) - ## / 57
- msys-sqlite3amatch-0.dll (1268fcc6b96b) - ## / 58
- msys-sqlite3closure-0.dll (309048c9a872) - ## / 56
- msys-sqlite3compress-0.dll (139d5a90910f) - ## / 58
- msys-sqlite3eval-0.dll (5dffc9ef2b68) - ## / 57
- msys-sqlite3fileio-0.dll (90aa274abe9c) - ## / 58
- msys-sqlite3fuzzer-0.dll (2554226a2e4c) - ## / 57
- msys-sqlite3icu-0.dll (e24666638238) - ## / 57
- msys-sqlite3ieee754-0.dll (5e95d5f66487) - ## / 57
- msys-sqlite3nextchar-0.dll (7abeb700b360) - ## / 57
- msys-sqlite3percentile-0.dll (bd87e3cf5651) - ## / 57
- msys-sqlite3rbu-0.dll (7f7edcbf329f) - ## / 58
- msys-sqlite3regexp-0.dll (d1e3ea2a0361) - ## / 53
- msys-sqlite3rot13-0.dll (e84aacde17da) - ## / 57
- msys-sqlite3series-0.dll (433ae7b73773) - ## / 58
- msys-sqlite3showauth-0.dll (9c209c22cbe5) - ## / 58
- msys-sqlite3spellfix-0.dll (210507aa6efb) - ## / 57
- msys-sqlite3totype-0.dll (418fc24bd511) - ## / 57
- msys-sqlite3vfslog-0.dll (74669b038836) - ## / 57
- msys-sqlite3vtshim-0.dll (0f05f0dc6b5f) - ## / 57
- msys-sqlite3wholenumber-0.dll (5de9fb81db67) - ## / 57
- msys-ssh2-1.dll (17c00871c847) - ## / 55
- msys-svn_client-1-0.dll (a05dc3ea67c4) - ## / 58
- msys-svn_delta-1-0.dll (2948cdb27419) - ## / 55
- msys-svn_diff-1-0.dll (8f9c1a3ad8d6) - ## / 58
- msys-svn_fs-1-0.dll (3263770469be) - ## / 58
- msys-svn_fs_fs-1-0.dll (1b45758a4ca9) - ## / 55
- msys-svn_fs_util-1-0.dll (8c00927c1d90) - ## / 55
- msys-svn_fs_x-1-0.dll (4d13e6c3257e) - ## / 57
- msys-svn_ra-1-0.dll (4fdda017c7ac) - ## / 57
- msys-svn_ra_local-1-0.dll (85eb0cc08103) - ## / 57
- msys-svn_ra_serf-1-0.dll (c7fa413b1a96) - ## / 58
- msys-svn_ra_svn-1-0.dll (b20ff6b5bc32) - ## / 57
- msys-svn_repos-1-0.dll (23783be542a8) - ## / 58
- msys-svn_subr-1-0.dll (33df075ba0ea) - ## / 55
- msys-svn_swig_perl-1-0.dll (8ca67d98ec41) - ## / 55
- msys-svn_swig_py-1-0.dll (6f221aa24105) - ## / 56
- msys-svn_swig_ruby-1-0.dll (56f7e340d56b) - ## / 56
- msys-svn_wc-1-0.dll (687024b6be55) - ## / 57
- msys-tasn1-6.dll (8457f9d2f71d) - ## / 55
- msys-ticw6.dll (d403330c6bd3) - ## / 58
- msys-uuid-1.dll (6515649cd2dc) - ## / 57
- msys-wind-0.dll (3b5174fac4c0) - ## / 61
- msys-z.dll (783d56bb763b) - ## / 55
- p11-kit.exe (b57c7f38644b) - ## / 64
- patch.exe (8349f97d523a) - ## / 71
- perl.exe (e3d94eed80ed) - ## / 55
- pluginviewer.exe (6820a317ed27) - ## / 68
- reset.exe (632b158852f4) - ## / 57
- sasldblistusers2.exe (6f46e5389587) - ## / 68
- saslpasswd2.exe (66c8d91f0d11) - ## / 64
- scp.exe (99e011c1dead) - ## / 57
- sdiff.exe (c0c542cefb1a) - ## / 70
- sed.exe (750a6143f58d) - ## / 69
- sftp.exe (dd7e62fa3c6e) - ## / 56
- slogin.exe (f843e07d7d23) - ## / 57
- ssh-add.exe (4ec806994295) - ## / 57
- ssh-agent.exe (9b98d0cf988a) - ## / 57
- ssh-keygen.exe (12445e044864) - ## / 58
- ssh-keyscan.exe (162e886a77dc) - ## / 58
- sshd.exe (92af22aa16d2) - ## / 57
- tabs.exe (505b899f0b14) - ## / 57
- tar.exe (5e33f14e2f3f) - ## / 60
- toe.exe (5c3eac62ad77) - ## / 57
- tput.exe (c2ae33b5acfc) - ## / 57
- trust.exe (0b8831ecd595) - ## / 64
- u2d.exe (746064a37aaa) - ## / 56
- unzip.exe (083f22161a98) - ## / 63
- unzipsfx.exe (47804229d28d) - ## / 71
- which.exe (fca2d449b35d) - ## / 73
- xargs.exe (88e5fc0f7d8c) - ## / 69
- grcat.exe (1ef60e6bf7ec) - ## / 62
- pwcat.exe (a0dad90561f5) - ## / 62
- filefuncs.dll (fc6957b2cb7d) - ## / 56
- fnmatch.dll (aa1963725a24) - ## / 55
- fork.dll (fbd958b6347e) - ## / 55
- inplace.dll (014ab82b4830) - ## / 55
- ordchr.dll (de7932aeedee) - ## / 57
- readdir.dll (82b22da69b9f) - ## / 55
- readfile.dll (3493c4fc80b9) - ## / 56
- revoutput.dll (8aec437c5af7) - ## / 55
- revtwoway.dll (e7298b6d827b) - ## / 57
- rwarray.dll (733a05db83df) - ## / 57
- testext.dll (fec545fd5fc6) - ## / 54
- time.dll (c8194c9641b4) - ## / 57
- gpgkeys_curl.exe (0a38c741fccf) - ## / 58
- gpgkeys_finger.exe (aa4b6e3159d0) - ## / 56
- gpgkeys_hkp.exe (5f722328d6e0) - ## / 57
- p11-kit-remote.exe (6492cc1c0579) - ## / 65
- arybase.dll (be484be4cfb9) - ## / 57
- attributes.dll (9bbd777b0ceb) - ## / 57
- B.dll (6b3d221d6613) - ## / 57
- Bzip2.dll (064b1c8e09c8) - ## / 57
- Zlib.dll (ee5ca931b4b4) - ## / 57
- Cwd.dll (a5f850191416) - ## / 57
- Dumper.dll (4194521c64ce) - ## / 57
- DB_File.dll (3f72634055ef) - ## / 56
- Peek.dll (1fafc33d6fb4) - ## / 56
- PPPort.dll (bc6aba5e991f) - ## / 57
- MD5.dll (169ffc5e4395) - ## / 57
- SHA.dll (a1c35a10a325) - ## / 57
- Encode.dll (f3b748dcab5b) - ## / 58
- Byte.dll (6a841389a297) - ## / 57
- CN.dll (8d64919403c9) - ## / 57
- EBCDIC.dll (a453dcc679c4) - ## / 56
- JP.dll (76d8511e4a35) - ## / 56
- KR.dll (e365cc797b87) - ## / 57
- Symbol.dll (4a17ef495100) - ## / 58
- TW.dll (176567db1aa3) - ## / 58
- Unicode.dll (b443c023e795) - ## / 57
- Fcntl.dll (2b961e705100) - ## / 57
- DosGlob.dll (20d4645c0b22) - ## / 57
- Glob.dll (04ccfac06a33) - ## / 57
- Call.dll (c63e2ae6fd6d) - ## / 57
- GDBM_File.dll (40199d5ce697) - ## / 57
- Util.dll (af1c029f2697) - ## / 57
- FieldHash.dll (b021fbcf26ab) - ## / 57
- Langinfo.dll (026d37574476) - ## / 58
- IO.dll (eaf3258ed8d7) - ## / 57
- SysV.dll (961d8dde67de) - ## / 57
- Util.dll (3fdf8554bec4) - ## / 58
- FastCalc.dll (bb52d504fcd9) - ## / 57
- Base64.dll (c340eaf97ab6) - ## / 57
- mro.dll (8537a28b8693) - ## / 57
- NDBM_File.dll (0915142882eb) - ## / 57
- ODBM_File.dll (9b525fc9d765) - ## / 57
- Opcode.dll (a39a4f44b2ad) - ## / 57
- encoding.dll (be8655398b4e) - ## / 57
- mmap.dll (ff95f86c9bd4) - ## / 57
- scalar.dll (d61ebd00aa62) - ## / 57
- via.dll (3d62095f625e) - ## / 57
- POSIX.dll (7e2f60830c63) - ## / 56
- re.dll (fc5d31831bbb) - ## / 57
- SDBM_File.dll (d28d2d7dd934) - ## / 57
- Socket.dll (206eaf47c450) - ## / 57
- Storable.dll (d44e71adb1ca) - ## / 57
- Hostname.dll (84b0ef49c4e0) - ## / 57
- Syslog.dll (00168b61067a) - ## / 57
- threads.dll (8bd9b8e14142) - ## / 58
- shared.dll (1aee0e981548) - ## / 58
- NamedCapture.dll (c530823a5ad7) - ## / 58
- HiRes.dll (2b35fe64f31c) - ## / 58
- Piece.dll (20b9d74faa4e) - ## / 57
- Collate.dll (389f9355b9de) - ## / 56
- Win32.dll (a65f3209e9b4) - ## / 58
- File.dll (fc8943b3c058) - ## / 58
- Parser.dll (35cbf4b02832) - ## / 55
- SSLeay.dll (03ef0ec238bc) - ## / 58
- _Client.dll (cf5af2959b7f) - ## / 58
- _Core.dll (88bd7d6f7397) - ## / 56
- _Delta.dll (90ce4f5d6d23) - ## / 54
- _Fs.dll (119a3b16fdf8) - ## / 57
- _Ra.dll (fe16cb27253e) - ## / 56
- _Repos.dll (5e29df25da29) - ## / 58
- _Wc.dll (dfe15fcf0a40) - ## / 58
- ReadKey.dll (ca3f0e11850c) - ## / 54
- msys-anonymous-3.dll (3f1e82f356a1) - ## / 67
- msys-crammd5-3.dll (d9dfa453cff4) - ## / 66
- msys-digestmd5-3.dll (612eb73f4a5d) - ## / 67
- msys-gs2-3.dll (daae449083c8) - ## / 62
- msys-gssapiv2-3.dll (45528076bc88) - ## / 67
- msys-otp-3.dll (16f8191b9f7d) - ## / 67
- msys-plain-3.dll (a3f8838e1df6) - ## / 67
- msys-sasldb-3.dll (872e5b74df06) - ## / 67
- msys-scram-3.dll (9e4cea2e206a) - ## / 67
- msys-sql-3.dll (343ccd13b834) - ## / 67
- sftp-server.exe (e9f9253f9487) - ## / 57
- ssh-keysign.exe (4858756a7290) - ## / 57
- ssh-pkcs11-helper.exe (3e5280fdc886) - ## / 57
- rmt.exe (b5dfc24e5e91) - ## / 59
- bigram.exe (67ab4fd65804) - ## / 72
- code.exe (5e660fbe2ad0) - ## / 71
- frcode.exe (d2bf4996922e) - ## / 73
- libcares-2.dll (3b19d05add59) - ## / 67
- libexpat-1.dll (c7fac4116b87) - ## / 65
- libp11-kit-0.dll (a057f98d4cb0) - ## / 63
- libpcre-1.dll (c2769c297b4e) - ## / 61
- p11-kit.exe (393c2dcf822e) - ## / 60
- trust.exe (86494fd73c21) - ## / 61
- xmlwf.exe (eaeb9e0efa8a) - ## / 61
- p11-kit-remote.exe (edded64c61dc) - ## / 60
- p11-kit-trust.dll (af69831930f1) - ## / 59
- gzip.exe (fe28b5d9a012) - ## / 63
- rebase.exe (79cb5d0137d0) - ## / 62
- xmlwf.exe (fee3a0bd1ff5) - ## / 59
- libidn-11.dll (0b44ff4c5b7c) - ## / 65
- arch.exe (fd9f59d1c0fe) - ## / 60
- base64.exe (8e044f1921b8) - ## / 66
- basename.exe (ff022f3fee5c) - ## / 62
- cat.exe (dc6676c7eab6) - ## / 67
- chcon.exe (2cc105f8ca1d) - ## / 62
- chgrp.exe (230bf32f5c88) - ## / 66
- chmod.exe (0df001ab4d46) - ## / 60
- chown.exe (5adedef7a18f) - ## / 60
- chroot.exe (28a0fd506211) - ## / 64
- cksum.exe (d55c5e8a45fa) - ## / 72
- comm.exe (02c74daa0856) - ## / 61
- cp.exe (d7ea1f796d96) - ## / 72
- csplit.exe (4c45f3fd83b5) - ## / 61
- cut.exe (f34b39f0c438) - ## / 62
- date.exe (4d0bda1d133b) - ## / 62
- dd.exe (01c415f30178) - ## / 61
- df.exe (6556569a0777) - ## / 62
- dir.exe (47ef1a883978) - ## / 60
- dircolors.exe (cebb3c84ed88) - ## / 68
- dirname.exe (f9e2f4e27577) - ## / 62
- du.exe (7ad03ac247e6) - ## / 68
- echo.exe (6e20068d9afa) - ## / 61
- env.exe (71b4ea93bce5) - ## / 61
- expand.exe (2a29d1557a65) - ## / 61
- expr.exe (c2c2410a3efb) - ## / 62
- factor.exe (5d1dbd935aa3) - ## / 61
- false.exe (f3ed16f1994c) - ## / 62
- fmt.exe (2d5647796da7) - ## / 61
- fold.exe (c01cd23b20b5) - ## / 62
- gkill.exe (f628fe15b560) - ## / 61
- groups.exe (a93d0b8e3f8c) - ## / 70
- head.exe (2577d9218c4c) - ## / 62
- hostid.exe (bf0eea61dea6) - ## / 61
- hostname.exe (48b9e42d6bdc) - ## / 65
- id.exe (8966bb2a5d4b) - ## / 67
- install.exe (8688fe122e42) - ## / 62
- join.exe (e47edc49264e) - ## / 60
- link.exe (de0d9f2b6fe9) - ## / 61
- ln.exe (c3f1b070c25b) - ## / 68
- logname.exe (14c56b734073) - ## / 72
- ls.exe (60e146010435) - ## / 72
- md5sum.exe (4cb18ccf4cf1) - ## / 61
- mkdir.exe (be89d833d331) - ## / 71
- mkfifo.exe (29b9995444fb) - ## / 60
- mknod.exe (cdb2922d07be) - ## / 61
- mktemp.exe (727d1649c00c) - ## / 68
- mv.exe (3eea25402c45) - ## / 72
- nice.exe (ff778d08f0f6) - ## / 62
- nl.exe (682ced998ca9) - ## / 61
- nohup.exe (013e98753be4) - ## / 73
- nproc.exe (b23d1700a3ca) - ## / 62
- numfmt.exe (2597c79a2656) - ## / 62
- od.exe (0ca7db4ef4a9) - ## / 61
- paste.exe (8e98a6d660b5) - ## / 62
- pathchk.exe (f48b2817d6ed) - ## / 61
- pinky.exe (28edb38e3841) - ## / 65
- pr.exe (be6f503fd275) - ## / 27
- printenv.exe (daa0095b2fde) - ## / 62
- printf.exe (d468dc9c99e4) - ## / 70
- ptx.exe (59bf90459e38) - ## / 62
- pwd.exe (ea4af0dc87aa) - ## / 62
- readlink.exe (f89633a16053) - ## / 60
- realpath.exe (e16e64d95cc3) - ## / 69
- rm.exe (8cde80c5268e) - ## / 61
- rmdir.exe (1dab40faa4da) - ## / 61
- runcon.exe (342659863794) - ## / 61
- seq.exe (e3f7bb2796f3) - ## / 60
- sha1sum.exe (cda02e817953) - ## / 61
- sha224sum.exe (b4282969c20c) - ## / 67
- sha256sum.exe (aeae5848a1e2) - ## / 61
- sha384sum.exe (44e4a8b32ba3) - ## / 61
- sha512sum.exe (f381b22e4015) - ## / 62
- shred.exe (fc30d6f0b941) - ## / 60
- shuf.exe (b40f21676f24) - ## / 61
- sleep.exe (a2b2365410c9) - ## / 61
- sort.exe (aed75efdf806) - ## / 67
- split.exe (513c554a85d2) - ## / 68
- stat.exe (81ad9d699ff1) - ## / 61
- stdbuf.exe (3dd549cb4d5e) - ## / 69
- stty.exe (5865301d4561) - ## / 61
- sum.exe (3a9190eb38fb) - ## / 61
- sync.exe (66435c151541) - ## / 62
- tac.exe (8ceb3e3344ff) - ## / 60
- tail.exe (df89c9237080) - ## / 60
- tee.exe (96857df1a787) - ## / 60
- test.exe (118b3b078e54) - ## / 61
- timeout.exe (11b5dc9b095c) - ## / 62
- touch.exe (6545be604148) - ## / 62
- tr.exe (bf937814f028) - ## / 62
- true.exe (37e64b2a6d92) - ## / 59
- truncate.exe (5eb3ffa170b3) - ## / 62
- tsort.exe (40d1046a9bd9) - ## / 68
- tty.exe (e7a20450a441) - ## / 62
- uname.exe (dd630cf95ce5) - ## / 62
- unexpand.exe (b6104066ddfe) - ## / 67
- uniq.exe (a0b2872d4100) - ## / 64
- unlink.exe (03528fd41428) - ## / 68
- users.exe (03926a48fd39) - ## / 62
- vdir.exe (8b0bc056bb76) - ## / 68
- wc.exe (6bd318f7e92d) - ## / 61
- who.exe (b8e543be9017) - ## / 62
- whoami.exe (1567f1fb88f0) - ## / 68
- yes.exe (87e1e921d31b) - ## / 61
- [.exe (6335f0688405) - ## / 69
- libstdbuf.so.exe (ccdcda114c4c) - ## / 62
- libwinpthread-1.dll (3c12213f5d46) - ## / 67
- envsubst.exe (e11da01c13ac) - ## / 56
- gettext.exe (6af101c5a26f) - ## / 57
- libintl-8.dll (597f10ac2f5a) - ## / 57
- recode-sr-latin.exe (c7dc3e01a018) - ## / 56
- msys-atomic-1.dll (6567964a5a2b) - ## / 57
- msys-crypt-0.dll (0b6a0f7a2e75) - ## / 57
- msys-expat-1.dll (d26b2a25c823) - ## / 56
- msys-gcc_s-1.dll (f80c8f98febe) - ## / 54
- msys-gmp-10.dll (cb1bbd6fbbbf) - ## / 52
- msys-gmpxx-4.dll (d376200004ee) - ## / 55
- msys-gomp-1.dll (b69a20d8cc7a) - ## / 55
- msys-mpfr-4.dll (cbb23f4e5888) - ## / 57
- msys-ssp-0.dll (68925d0fe0ab) - ## / 57
- Cmder.exe (aa72f5fdb743) - ## / 56
- clink_dll_x64.dll (544a4180a200) - ## / 71
- clink_dll_x86.dll (c711df57599d) - ## / 63
- clink_x64.exe (2380d11ccc68) - ## / 64
- clink_x86.exe (74080ef8e773) - ## / 71
- ConEmu.exe (b4e04b15f6f1) - ## / 57
- ConEmu64.exe (f5c968f16367) - ## / 55
- ConEmuC.exe (8726ff33e393) - ## / 56
- ConEmuC.exe.rar (b929f8981b0c) - ## / 54
- ConEmuC64.exe (75bdae09a528) - ## / 55
- ConEmuCD.dll (da3c7a9de382) - ## / 57
- ConEmuCD64.dll (e9cd5f8c5e15) - ## / 57
- ConEmuHk.dll (8097a28a08bc) - ## / 57
- ConEmuHk64.dll (2bb5b480cd57) - ## / 57
- ExtendedConsole.dll (2f0125a02b51) - ## / 57
- ExtendedConsole64.dll (ca25cdfef656) - ## / 57
- ConEmu.dll (0396e3ce9653) - ## / 57
- ConEmu.x64.dll (7fd185688880) - ## / 57
- ConEmuBg.dll (e0bca7b7c30d) - ## / 57
- ConEmuBg.x64.dll (b3ccaa912edf) - ## / 53
- ConEmuLn.dll (05f0c41f40cd) - ## / 57
- ConEmuLn.x64.dll (4f7d839cc184) - ## / 57
- ConEmuTh.dll (986baf5b3661) - ## / 57
- ConEmuTh.x64.dll (aad8b288b581) - ## / 56
- git-bash.exe (b69d0041ecec) - ## / 55
- git-cmd.exe (3fd246106aa1) - ## / 57
- bash.exe (e23598e33b44) - ## / 57
- git.exe (2ac780d54371) - ## / 56
- git-gui.exe (3d7da5502109) - ## / 57
- gitk.exe (6155be5defe1) - ## / 57
- certtool.exe (2cb9ee74d1db) - ## / 57
- curl.exe (b5c0e7ffe982) - ## / 57
- git-receive-pack.exe (6c696b64968e) - ## / 56
- git-upload-pack.exe (8f21207bafa6) - ## / 57
- git.exe (6ca7bdf389c1) - ## / 56
- libatomic-1.dll (7bd11d7bbd03) - ## / 57
- libcurl-4.dll (a5f9cd4fc428) - ## / 57
- libeay32.dll (7b92320c39f6) - ## / 57
- libgcc_s_dw2-1.dll (84f241a82ca2) - ## / 51
- libgnutls-30.dll (9f9f01ed9c25) - ## / 57
- libgomp-1.dll (da2a7809dbe4) - ## / 57
- libgomp-plugin-host_nonshm-1.dll (df50d132e059) - ## / 57
- libssp-0.dll (8c066744d545) - ## / 50
- libstdc++-6.dll (2d8fad54668d) - ## / 49
- libvtv-0.dll (a0cfad0814b1) - ## / 57
- libvtv_stubs-0.dll (d4136f867d05) - ## / 57
- openssl.exe (0006de54a42f) - ## / 57
- p11tool.exe (6e4ec47d07d7) - ## / 57
- psktool.exe (9aedf3554273) - ## / 57
- srptool.exe (85cace257d1a) - ## / 57
- ssleay32.dll (8815ce179573) - ## / 57
- 4758ccaeay32.dll (66a3908840e6) - ## / 57
- aepeay32.dll (bee0ce01f94e) - ## / 57
- atallaeay32.dll (e4e8c9f3fd99) - ## / 57
- capieay32.dll (f12dcb30e0a1) - ## / 57
- chileay32.dll (004bd04099d7) - ## / 57
- cswifteay32.dll (5acfbbaa7fcd) - ## / 56
- gmpeay32.dll (1fa915b7fb76) - ## / 56
- gosteay32.dll (da9553a51c50) - ## / 56
- nuroneay32.dll (fcf486fb95c1) - ## / 57
- padlockeay32.dll (5f1815444c5f) - ## / 56
- surewareeay32.dll (c43fd5f51905) - ## / 57
- ubseceay32.dll (ce263a26e0f3) - ## / 56
- git-credential-manager.exe (5bffe6dc5198) - ## / 56
- git-credential-store.exe (3180e723086d) - ## / 57
- git-credential-wincred.exe (9904d5e16c4e) - ## / 57
- git-daemon.exe (c29fae0a8435) - ## / 57
- git-fast-import.exe (aa590850beed) - ## / 57
- git-http-backend.exe (cded20598783) - ## / 57
- git-http-fetch.exe (7558682363f0) - ## / 57
- git-http-push.exe (05b684c7de48) - ## / 57
- git-imap-send.exe (c9ef7f332dea) - ## / 57
- git-remote-ftp.exe (be78d984df97) - ## / 56
- git-sh-i18n--envsubst.exe (46fe3fd5796d) - ## / 56
- git-show-index.exe (b92370b78cfd) - ## / 57
- Microsoft.Alm.Authentication.dll (dad812a2e71e) - ## / 57
- Microsoft.Alm.Git.dll (5c0d68b80140) - ## / 56
- curl.exe (c9b835acda41) - ## / 56
- cygcheck.exe (855ca6800285) - ## / 55
- cygpath.exe (e1ea1a67161a) - ## / 56
- cygwin-console-helper.exe (47d24a8873d7) - ## / 56
- ex.exe (eab2f19ba24b) - ## / 57
- getconf.exe (9b58fb21264c) - ## / 57
- getfacl.exe (ba52e4341ee1) - ## / 57
- kill.exe (4b7ca15196a8) - ## / 57
- ldd.exe (7d0fc07a6d2a) - ## / 57
- ldh.exe (661f42c0db16) - ## / 55
- locale.exe (ba7be0b055e0) - ## / 58
- minidumper.exe (de22ad359999) - ## / 57
- mkgroup.exe (ed1a93af6980) - ## / 57
- mkpasswd.exe (d7ad8201bee2) - ## / 57
- mount.exe (a6a92da2cef6) - ## / 57
- msys-2.0.dll (240a9c307aee) - ## / 57
- msys-crypto-1.0.0.dll (922b07496030) - ## / 57
- msys-curl-4.dll (3ff403ec2a6b) - ## / 56
- msys-ssl-1.0.0.dll (19c775bfd191) - ## / 49
- openssl.exe (870efe27ba6f) - ## / 57
- passwd.exe (1149df97677d) - ## / 55
- pldd.exe (813308d4f9f3) - ## / 57
- ps.exe (bddf1fc6bdf9) - ## / 56
- regtool.exe (f1a0251b88fd) - ## / 57
- rview.exe (bd22b3237691) - ## / 57
- setfacl.exe (dd5064d57a05) - ## / 57
- setmetamode.exe (55b33c1f7f1c) - ## / 57
- ssp.exe (d8748dad0947) - ## / 57
- strace.exe (f717508f858a) - ## / 55
- tzset.exe (c51c0410530b) - ## / 57
- umount.exe (31848414eb49) - ## / 57
- winpty-agent.exe (d389ec360ecf) - ## / 57
- winpty-debugserver.exe (58cb55e021ba) - ## / 57
- winpty.dll (ccb8f0806136) - ## / 57
- winpty.exe (dfb8d158c87a) - ## / 55
- xxd.exe (03cab90686ee) - ## / 57
- cmder.7z (f799de65164a) - ## / 56
- Cmder.1.3.0.20160620-beta.nupkg (2bb653242a5d) - ## / 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 |
---|---|---|---|---|
Cmder 1.3.25 | 32410 | Friday, May 31, 2024 | Approved | |
Cmder 1.3.24 | 54595 | Sunday, October 1, 2023 | Approved | |
Cmder 1.3.21 | 31666 | Thursday, May 4, 2023 | Approved | |
Cmder 1.3.20 | 42885 | Tuesday, October 18, 2022 | Approved | |
Cmder 1.3.19 | 144478 | Monday, January 17, 2022 | Approved | |
Cmder 1.3.18 | 57210 | Friday, March 26, 2021 | Approved | |
Cmder 1.3.17 | 27407 | Wednesday, December 23, 2020 | Approved | |
Cmder 1.3.16 | 58612 | Friday, July 31, 2020 | Approved | |
Cmder 1.3.15 | 17894 | Saturday, June 27, 2020 | Approved | |
Cmder 1.3.14 | 50959 | Thursday, January 9, 2020 | Approved | |
Cmder 1.3.13 | 17446 | Monday, November 25, 2019 | Approved | |
Cmder 1.3.12 | 36837 | Wednesday, August 21, 2019 | Approved | |
Cmder 1.3.11 | 61693 | Monday, December 24, 2018 | Approved | |
Cmder 1.3.10 | 6926 | Saturday, December 1, 2018 | Approved | |
Cmder 1.3.9 | 408 | Thursday, November 29, 2018 | Approved | |
Cmder 1.3.8 | 6534 | Tuesday, November 13, 2018 | Approved | |
Cmder 1.3.7 | 1467 | Saturday, November 10, 2018 | Approved | |
Cmder 1.3.6 | 5215 | Thursday, October 25, 2018 | Approved | |
Cmder 1.3.5 | 46218 | Sunday, February 11, 2018 | Approved | |
Cmder 1.3.4 | 419 | Thursday, March 29, 2018 | Approved | |
Cmder 1.3.3 | 17895 | Friday, November 3, 2017 | Approved | |
Cmder 1.3.2 | 33902 | Friday, December 16, 2016 | Approved | |
Cmder 1.3.1.20161216 | 459 | Friday, December 16, 2016 | Approved | |
Cmder 1.3.1 | 4677 | Wednesday, November 30, 2016 | Approved | |
Cmder 1.3.0.20160620-beta | 1050 | Wednesday, June 22, 2016 | Exempted | |
Cmder 1.3.0 | 11020 | Wednesday, July 20, 2016 | Approved | |
Cmder 1.3.0-beta | 539 | Saturday, May 21, 2016 | Exempted | |
Cmder 1.2.9-beta | 442 | Saturday, May 21, 2016 | Exempted | |
Cmder 1.1.4.102 | 588 | Wednesday, June 22, 2016 | Approved |
© 2013 Samuel Vasko
Program
Package
- Automatically (stable releases only) built and uploaded by dtgm
- No longer depends on cmder.portable -- Please note
cmder.portable
has been deprecated and migrated to this package as the.portable
was unnecessary and led to much confusion. - Replace
Get-ToolsLocation
withGet-BinRoot
for backward compatibility. Note that in chocolatey >=0.9.10,Get-BinRoot
is an alias forGet-ToolsLocation
.
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.