Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Alternative Windows shells, besides CMD.EXE? [closed]

Tags:

terminal

cmd

I don't like CMD.EXE, the built-in Windows terminal. Among its problems:

  1. Hard to copy and paste.

  2. Hard to resize the window.

  3. Hard to open another window (no menu options do this).

  4. Seems to always start in C:\Windows\System32, which is super useless.

  5. Weird scrolling. Sometimes it scrolls down really far into blank space, and you have to scroll up to where the window is actually populated.

I love Cygwin, but the problem with Cygwin is that it runs different executables. The Cygwin Python is different than the Windows Python, they are linked against different libraries and stuff.

Thanks.

like image 245
SerMetAla Avatar asked Jun 27 '13 16:06

SerMetAla


People also ask

Can I use PowerShell instead of cmd?

To create the best command-line experience, PowerShell is now the command shell for File Explorer. It replaces Command Prompt (cmd.exe) in the Windows Logo Key + X menu, in File Explorer's File menu, and in the context menu that appears when you shift-right-click the whitespace in File Explorer.

Is Windows shell and Command Prompt the same?

Windows Command Prompt (also known as the command line, cmd.exe or simply cmd) is a command shell based on the MS-DOS operating system from the 1980s that enables a user to interact directly with the operating system.

Is cmd.exe deprecated?

The Windows Cmd / Command-Line shell is NOT being removed from Windows in the near or distant future! The Cmd shell remains an essential part of Windows, and is used daily by millions of businesses, developers, and IT Pro's around the world.


2 Answers

I am a fan of Cmder, a package including clink, conemu, msysgit, and some cosmetic enhancements.

http://cmder.net/

https://github.com/cmderdev/cmder

https://chocolatey.org/packages/Cmder

enter image description here

like image 84
Eric Hartford Avatar answered Oct 03 '22 23:10

Eric Hartford


  1. Hard to copy and paste.

    Not true. Enable QuickEdit, either in the properties of the shortcut, or in the properties of the CMD window (right-click on the title bar), and you can mark text directly. Right-click copies marked text into the clipboard. When no text is marked, a right-click pastes text from the clipboard.

    enter image description here

  2. Hard to resize the window.

    True. Console2 (see below) does not have this limitation.

  3. Hard to open another window (no menu options do this).

    Not true. Use start cmd or define an alias if that's too much hassle:

    doskey nw=start cmd /k $* 
  4. Seems to always start in C:\Windows\System32, which is super useless.

    Not true. Or rather, not true if you define a start directory in the properties of the shortcut

    enter image description here

    or by modifying the AutoRun registry value. Shift-right-click on a folder allows you to launch a command prompt in that folder.

  5. Weird scrolling. Sometimes it scrolls down really far into blank space, and you have to scroll up to where the window is actually populated

    Never happened to me.

An alternative to plain CMD is Console2, which uses CMD under the hood, but provides a lot more configuration options.

like image 39
Ansgar Wiechers Avatar answered Oct 04 '22 01:10

Ansgar Wiechers