Downloads:
77,935
Downloads of v 1.3.25:
770
Last Update:
31 May 2024
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 Mini
- 1
- 2
- 3
1.3.25 | Updated: 31 May 2024
- 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:
77,935
Downloads of v 1.3.25:
770
Maintainer(s):
Software Author(s):
- Samuel Vasko
Cmder Mini 1.3.25
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
Deployment Method: Individual Install, Upgrade, & Uninstall
To install Cmder Mini, run the following command from the command line or from PowerShell:
To upgrade Cmder Mini, run the following command from the command line or from PowerShell:
To uninstall Cmder Mini, 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 cmdermini --internalize --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 cmdermini -y --source="'INTERNAL REPO 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 cmdermini -y --source="'INTERNAL REPO URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install cmdermini
win_chocolatey:
name: cmdermini
version: '1.3.25'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'cmdermini' do
action :install
source 'INTERNAL REPO URL'
version '1.3.25'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller cmdermini
{
Name = "cmdermini"
Version = "1.3.25"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'cmdermini':
ensure => '1.3.25',
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 02 Nov 2024.
CmderMini (no bundled msysgit) 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 2 distinct tools:
Console emulator = Conemu
Cmd.exe enhancements = clink
Notes
This package uncompresses to 8 MB and does not include Unix integration via msysgit.
See cmder (250 MB) for enhanced console with bundled Unix utilities via msysgit.
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.
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.25>
and can be verified by doing the following:
1. Download the following <https://github.com/cmderdev/cmder/releases/download/v1.3.25/cmder_mini.zip>
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: C0611777A5BEE9952CFB0439BD903EFE49248DE99823A3127563C55E7FA1A5D8
The file 'LICENSE.txt' has been obtained from <https://github.com/cmderdev/cmder/blob/master/LICENSE>
$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
}
md5: 92C09EA4F9F093C5C31A7D1325320B97 | sha1: 6F2AEA22FF069ACC211D7A4282FB6457707B5F17 | sha256: C0611777A5BEE9952CFB0439BD903EFE49248DE99823A3127563C55E7FA1A5D8 | sha512: 315E155F4F38FB0A9E66363A8511C2DB89F0069A18AB72DD5DEAF6AD9FFEAAEF3B7986FF1046BC17E0AFAA32E622082DA5BC912EB5CBBACBF5CF719581988B3D
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.
- cygwin1.dll (b5498e8e6ae9) - ## / 71
- wslbridge.exe (668ee195182b) - ## / 73
- conemu-cyg-32.exe (d580de81a996) - ## / 71
- conemu-cyg-64.exe (c61002446dae) - ## / 71
- conemu-msys-32.exe (a6f71894092a) - ## / 69
- conemu-msys2-32.exe (211f17cd364b) - ## / 70
- conemu-msys2-64.exe (8e5c5f66df50) - ## / 69
- ConEmu.exe (a7eadf0436b0) - ## / 74
- ConEmu64.exe (06c186ce306b) - ## / 72
- ConEmuC.exe (a45bba2264e2) - ## / 71
- ConEmuC64.exe (bb8b592787c8) - ## / 73
- ConEmuCD.dll (2ef1f7e839e3) - ## / 69
- ConEmuCD64.dll (eb1215ad89c8) - ## / 70
- ConEmuHk.dll (812329369de1) - ## / 68
- ConEmuHk64.dll (31f65b7afe91) - ## / 71
- ExtendedConsole.dll (c990231f3dec) - ## / 69
- ExtendedConsole64.dll (edc9e346ed07) - ## / 67
- ConEmu.dll (3ea0263f649d) - ## / 68
- ConEmu.x64.dll (278c9b169dc8) - ## / 70
- ConEmuBg.dll (cdbcfd040225) - ## / 69
- ConEmuBg.x64.dll (7411b13a2e95) - ## / 70
- ConEmuLn.dll (29c6f04c1673) - ## / 68
- ConEmuLn.x64.dll (ad34e77e7eeb) - ## / 69
- ConEmuTh.dll (35391f5622d0) - ## / 70
- ConEmuTh.x64.dll (9b7fa69dd622) - ## / 70
- Cmder.exe (6f35596886c2) - ## / 74
- clink_dll_x64.dll (2ffea2a03e3e) - ## / 74
- clink_dll_x86.dll (0e2c764ddc3e) - ## / 74
- clink_x64.exe (4bd52571588a) - ## / 74
- clink_x86.exe (62ff8c4a3d1c) - ## / 73
- clink_arm64.exe (7b6ca89bf529) - ## / 73
- clink_dll_arm64.dll (5adca05a86db) - ## / 72
- cmdermini.1.3.25.nupkg (eea15ae6d83b) - ## / 66
- cmder_mini.zip (c0611777a5be) - ## / 69
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 Mini 1.3.25 | 770 | Friday, May 31, 2024 | Approved | |
Cmder Mini 1.3.24 | 1486 | Tuesday, July 25, 2023 | Approved | |
Cmder Mini 1.3.21 | 828 | Thursday, May 4, 2023 | Approved | |
Cmder Mini 1.3.20 | 1562 | Tuesday, October 18, 2022 | Approved | |
Cmder Mini 1.3.19 | 2280 | Monday, January 17, 2022 | Approved | |
Cmder Mini 1.3.18 | 3065 | Friday, March 26, 2021 | Approved | |
Cmder Mini 1.3.17 | 1981 | Wednesday, December 23, 2020 | Approved | |
Cmder Mini 1.3.16 | 2874 | Thursday, July 30, 2020 | Approved | |
Cmder Mini 1.3.15 | 1271 | Saturday, June 27, 2020 | Approved | |
Cmder Mini 1.3.14 | 3849 | Thursday, January 9, 2020 | Approved | |
Cmder Mini 1.3.13.20191130 | 1582 | Saturday, November 30, 2019 | Approved | |
Cmder Mini 1.3.13 | 740 | Saturday, November 23, 2019 | Approved | |
Cmder Mini 1.3.12 | 7574 | Monday, August 19, 2019 | Approved | |
Cmder Mini 1.3.11 | 16823 | Sunday, December 23, 2018 | Approved | |
Cmder Mini 1.3.10 | 2041 | Saturday, December 1, 2018 | Approved | |
Cmder Mini 1.3.9 | 297 | Thursday, November 29, 2018 | Approved | |
Cmder Mini 1.3.8.20181114 | 2028 | Wednesday, November 14, 2018 | Approved | |
Cmder Mini 1.3.8 | 793 | Sunday, November 11, 2018 | Approved | |
Cmder Mini 1.3.6 | 1783 | Thursday, October 25, 2018 | Approved | |
CmderMini 1.3.5 | 10838 | Sunday, February 11, 2018 | Approved | |
CmderMini 1.3.4 | 341 | Thursday, March 29, 2018 | Approved | |
CmderMini 1.3.3 | 3622 | Friday, November 3, 2017 | Approved | |
CmderMini 1.3.2 | 3308 | Friday, December 16, 2016 | Approved | |
CmderMini 1.3.1.20161216 | 389 | Friday, December 16, 2016 | Approved | |
CmderMini 1.3.1 | 717 | Wednesday, November 30, 2016 | Approved | |
CmderMini 1.3.0.20160620-beta | 540 | Wednesday, June 22, 2016 | Exempted | |
CmderMini 1.3.0-beta | 491 | Saturday, May 21, 2016 | Exempted | |
CmderMini 1.2.9-beta | 362 | Saturday, May 21, 2016 | Exempted | |
CmderMini 1.1.4.102 | 957 | Wednesday, June 22, 2016 | Approved |
Copyright (c) 2016 Samuel Vasko
Software changelog
IMPORTANT
🔴 This release updates another dependency with a known vulnerability, it is suggested that you update as soon as possible.
Please see additional notes section below for information about the upcoming changes in Cmder as well.
What's Changed
- Updates to
3
vendored dependencies by @github-actions in https://github.com/cmderdev/cmder/pull/2889 - Fix #2859; script error when cwd name contains
%
by @chrisant996 in https://github.com/cmderdev/cmder/pull/2861 - Create SECURITY.md by @MartiUK in https://github.com/cmderdev/cmder/pull/2866
- Remove Cmder.exe race condition by @daxgames in https://github.com/cmderdev/cmder/pull/2891
- Revert Git update so not to include a release Candidate by @daxgames in https://github.com/cmderdev/cmder/pull/2892
- Enabled
match.expand_envvars
in the default clink settings in https://github.com/cmderdev/cmder/commit/c9b77f618a9314d56bb0572d7209c1d02f0e593e - Do CI on development PRs by @daxgames in https://github.com/cmderdev/cmder/pull/2907
- fix: fix some typos in comments by @loselarry in https://github.com/cmderdev/cmder/pull/2932
- Bump actions/upload-artifact from 3 to 4 by @dependabot in https://github.com/cmderdev/cmder/pull/2905
- Bump peter-evans/create-pull-request from 5 to 6 by @dependabot in https://github.com/cmderdev/cmder/pull/2918
- Bump softprops/action-gh-release from 1 to 2 by @dependabot in https://github.com/cmderdev/cmder/pull/2926
- Bump microsoft/setup-msbuild from 1 to 2 by @dependabot in https://github.com/cmderdev/cmder/pull/2917
- Bump github/codeql-action from 2 to 3 by @dependabot in https://github.com/cmderdev/cmder/pull/2906
- Bump actions/checkout from 3 to 4 by @dependabot in https://github.com/cmderdev/cmder/pull/2871
New Contributors
- @loselarry made their first contribution in https://github.com/cmderdev/cmder/pull/2932
Additional Notes
Note 1: We're in the process of improving Cmder's initialization speed in Cmder 1.4. In the next major release, the loading time is expected to be optimized significantly. You can track changes below:
Note 2: Cmder is in the process of dropping 32-bit support of x86 edition when the upstream projects (such as Git-for-Windows) do so. In the next major releases of Cmder, the minimum Windows requirement will be bumped from Windows 7 SP1 to Windows 10, as well.
📌 Did you know Cmder also works with Windows Terminal? If you'd like to receive an official Cmder release with WT, please submit your vote here.
Full Changelog: https://github.com/cmderdev/cmder/compare/v1.3.24...v1.3.25
-
- vcredist2010 (≥ 10.0.40219.2)
Ground Rules:
- This discussion is only about Cmder Mini and the Cmder Mini 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 Mini, 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.