vote up 18 vote down star
2

I loath working on the command line in Windows, primarily because the terminal application is wretched to use compared to terminal applications on linux and OS X. Major complaints

  1. No standard copy/paste. You have to turn on "mark" mode and it's only available from a multi-level popup triggered by the (small) left hand corner button. Then copy and paste need to be invoked from the same menu

  2. You can't arbitrarily resize the window by dragging, you need to set a preference (back to the multi-level popup) each time you want to resize a window

  3. You can only make the window so big before horizontal scroll bars enter the picture. Horizontal scroll bars suck.

  4. You can't navigate to folders with \\netpath notation (UNC?), you need to map a network drive. This sucks when working on multiple machines that are going to have different drives mapped

Are there any tricks or applications, (paid or otherwise), that address these issue?

flag

I would suggest retitling this as "terminal" is not the right word in regards to the windows command shell. On a unix system the command shell and your terminal application are essentially the same, on a windows system they are not. – Wedge Sep 14 '08 at 7:12
1  
@Wedge: on a unix system, the command shell is (nowadays) bash and the terminal application is xterm or gnome-terminal or… so I hardly can perceive them as being essentially the same. – ΤΖΩΤΖΙΟΥ Oct 10 '08 at 9:48

10 Answers

vote up 7 vote down check

Try these:

Windows PowerShell, a managed command interpreter from Microsoft. Take Command. This one has been around for a long time (formerly 4DOS). I used this on Windows NT 3.5 (!) and loved it. Cygwin lets you run Unix shells on Windows.

link|flag
1  
I'm not looking for a different shell interpreter, it's the application itself I loath. Cygwin suffers the same problems and I got the impression somewhere that Windows PowerShell does as well. Is that impression wrong? – Alan Storm Sep 13 '08 at 22:45
Yes, powershell's got the same problem. – Patrick Sep 13 '08 at 22:50
Just reread my response, any loathing was directed at windows, and not you for being helpful :) – Alan Storm Sep 13 '08 at 23:05
Powershell uses the same command shell host so it doesn't solve these problems. – Wedge Sep 14 '08 at 7:10
vote up 0 vote down

Why not use Putty?

link|flag
vote up 5 vote down
  1. Turn on quickedit mode (but selection is still rectangular instead of word-wrapped)
  2. Resizing by dragging works for me
  3. You can change the buffer size which will impact when scrollbars appear
  4. pushd \\server\share

Even with those, cmd.exe isn't a great console. See all the other replies and the earlier stackoverflow questions on the same subject. The "Console" project from sourceforge looks pretty good.

link|flag
vote up 1 vote down

Try any of the things suggested when I asked this question.

link|flag
vote up 4 vote down

I use Cygwin with Poderosa.

link|flag
vote up 2 vote down

I'm using Terminals for remote connection via Telnet, RDC, SSH, ... Combines most used protocolls in one program.

URL: http://www.codeplex.com/Terminals

link|flag
vote up 1 vote down

Console

From documentation:

NOTE: Console is NOT a shell. Therefore, it does not implement shell features like command-line completion, syntax coloring, command history, etc.

Console is simply a nice-looking front end for a shell of your choice (cmd.exe, 4NT, bash, etc.) Other command-line utilities can also be used as 'shells' by Console.

As a programming shell one can use ipython.

link|flag
vote up 2 vote down

I've had these issues too for years on Windows, but I recently found this project: Console

It still requires "mark mode" for copy/paste, but at least it's available from a right-click contextual menu (so you don't need to move the mouse to the top left and then move it again to the text you want to select)

UNC paths are not supported by cmd.exe but they are supported by PowerShell. (Console can be configured to use any shell, including cmd.exe and PowerShell)

link|flag
vote up 1 vote down

Take a look at Take Command.

link|flag
I use take command a lot. It does copy/paste, drag-resize, etc. – piCookie Sep 17 '08 at 16:16
vote up 19 vote down

Try Console 2.

link|flag
I'm using Vista and Console 2 (and 1.5) crashes very often. – klew Mar 29 at 21:21

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.