3

I make use of the command prompt quite a bit, but I've noticed that it has really poor support for copying and pasting.

Usually I get around this by creating a batch file, then executing that. What I was wondering is , is there a free program that can execute commands and return the results to a window, I guess if the program had a name it would be something like Visual CMD?

Tired of messing around with batch files, please help

JL.
  • 1,283
  • 10
  • 22
  • 35

2 Answers2

1

The default copy/paste functionality in the Windows Command Prompt can be cumbersome.

However, there is a built-in feature called QuickEdit mode. Enabling QuickEdit mode can make copying and pasting much simpler.

Basically you can paste with a right-click, and copy with a highlight followed by a right click. It's nice!

eleven81
  • 417
  • 6
  • 13
  • 29
1

You can also redirect the output of most cmd line apps:

Using Command Redirection Operators

Dir /s >C:\AdminInfo\Dir.txt

Above will send the output of the dir command to a text file.

dir /s 2>:\AdminInfo\DirErrors.txt

Above will redirect just the errors to a text file. Link has more examples.

Ed Fries
  • 1,619
  • 2
  • 12
  • 14