Possible Duplicate:
How do I paste into the Windows CMD prompt by using only the keyboard?

I'd like to be able to paste commands right into the command line prompt in windows.

Sounds trivial but it isn't working (ctrl+V doesn't work) and it would increase my productivity a lot when I'm following let's say a process as described in a manual. Should be a way to do it though.

link|improve this question
@lok: sourceforge.net/projects/console is a different option if you can't get cmd.exe to behave how you want – Merlyn Morgan-Graham Aug 8 '10 at 23:37
feedback

migrated from stackoverflow.com Aug 9 '10 at 0:29

This question came from our site for professional and enthusiast programmers.

closed as exact duplicate by Mehper C. Palavuzlar, random Aug 9 '10 at 13:38

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

3 Answers

Not a programming question, but you can just right click the app icon, select "Properties", and turn on quick edit mode. Right click now pastes.

Now voting to move to SuperUser...

link|improve this answer
+1 for QuickEdit. QuickEdit is the first thing I turn on at the command prompt. Make sure you say "change for all windows from this shortcut" or whatever the terminology is, so that you'll always be in quickedit mode. – Rich Homolka Aug 9 '10 at 3:59
feedback

It is unfortunate that ctrl+v doesn't work, but right click and paste isn't too bad of an alternative.

link|improve this answer
feedback

(... This applies to XP, and basically works in later Windows, but they may offer more).
The Windows console does have Copy // Paste // Find available.
However it is not handled in the normaal GUI way.. ie. Ctrl+C/P/F do not work.

You can use the keyboard or mouse to Copy.

Copy selects text in a rectangular block (not on a wrapped-line basis).

Keyboard Copy:
Alt+Space (to activate the System-menu), then use the Up/Down/Left/Right to navigate, and then in conjuntion with Shift to select the block of text.
Once you have selected the block, you must press Enter to finalize the copy command (this Enter is not passed to the command-line (some text must be selected, of course).

Keyboard Paste:
Alt+Space (to activate the System-menu), then E (Edit), then P (Paste)

Mouse **Copy: Turn on Quick Edit (Alt+Space, then P).. nb. Copy is only available in block-mode.

Mouse Paste: Only via the Console's System-menu (but I think this is not shown in Vista.. (7? may be the same)... just use the keyboard method... Its a quick as a wink, once you become familiar with it.

For Find, just follow suit.

link|improve this answer
feedback