up vote 40 down vote favorite
15
share [g+] share [fb]

Is there a keyboard shortcut for pasting the content of the clipboard into a command prompt window on Windows XP (instead of using the right mouse button)?

The typical Shift+Insert does not seem to work here.

link|improve this question

69% accept rate
feedback

12 Answers

up vote 33 down vote accepted

I personally use a little AutoHotkey script to remap certain keyboard functions, for the console window (CMD) I use:

; Redefine only when the active window is a console window 
#IfWinActive ahk_class ConsoleWindowClass

; Close Command Window with Ctrl+w
$^w::
WinGetTitle sTitle
If (InStr(sTitle, "-")=0) { 
	Send EXIT{Enter}
} else {
	Send ^w
}

return 


; Ctrl+up / Down to scroll command window back and forward
^Up::
Send {WheelUp}
return

^Down::
Send {WheelDown}
return


; Paste in command window
^V::
; Spanish menu (Editar->Pegar, I suppose English version is the same, Edit->Paste)
Send !{Space}ep
return

#IfWinActive
link|improve this answer
1  
Nice...wish I'd known about this ages ago. +1 – Kev Oct 29 '09 at 16:56
This stuff interferes with Cygwin when it is running inside a ConsoleWindow. I was excited about this tip but unfortunately I had to uninstall it. – piyo Aug 24 '10 at 13:26
1  
@piyo: maybe you can exclude the Cygwin console by its titlebar? eg: if the console title bar says "ConsoleWindow" you can add something like WinGetTitle sTitle\n If (sTitle="ConsoleWindow") {\n return\n }\n --- – PabloG Aug 24 '10 at 15:21
Good idea. (+1) Yeah that would work if the window titles are unchanging. I feel like I have more control over the window title in Cygwin so perhaps I can add some static yet invisible hinting text for AHK's filtering. – piyo Aug 26 '10 at 12:30
@piyo: cygwin mintty (no X involved) is so nicer for a cygwin shell... – Paulo Scardine Dec 29 '10 at 13:27
feedback

Yes.. but awkward. Link

ALT+SPACE+E+K <-- for copy . and
ALT+SPACE+E+P <-- for paste.

link|improve this answer
3  
Not exactly what I hoped for, but of course it works. Some additional tips: If you've mapped ALT+SPACE to your application launcher (e.g. Launchy) use ALT-SHIFT-SPACE instead If you're using a non-englisch version of windows the last 2 keys will of course differ (e.g. B+E for paste in german) – sme Sep 25 '08 at 7:54
2  
Just to explain selecting also: ALT+SPACE+E+K <-- for copy . and navigate up , down , left , right with arrows Shift + right arrow <-- for selecting the text ALT+SPACE+E+P <-- for paste. – YordanGeorgiev May 3 '09 at 15:40
feedback

Not really programming related, but I found this on Google, there is not a direct keyboard shortcut, but makes it a little quicker.

To enable or disable QuickEdit mode:

  1. Open the MS-DOS program, or the command prompt.
  2. Right-click the title bar and press Properties.
  3. Select the Options tab.
  4. Check or un-check the QuickEdit Mode box.
  5. Press OK.
  6. In the Apply Properties To Shortcut dialog, select the Apply properties to current window only if you wish to change the QuickEdit setting for this session of this window only, or select Modify shortcut that started this window to change the QuickEdit setting for all future invocations of the command prompt, or MS-DOS program.

To Copy text when QuickEdit is enabled:

  1. Click and drag the mouse pointer over the text you want.
  2. Press Enter (or right-click anywhere in the window) to copy the text to the clipboard.

To Paste text when QuickEdit is enabled:

  1. Right-click anywhere in the window.

To Copy text when QuickEdit is disabled:

  1. Right-click the title bar, press Edit on the menu, and press Mark.
  2. Drag the mouse over the text you want to copy.
  3. Press Enter (or right-click anywhere in the window) to copy the text to the clipboard.

To Paste text when QuickEdit is disabled:

  1. Right-click the title bar, press Edit on the menu, and press Paste.
link|improve this answer
Now it acts more like linux. – Malfist Jul 6 '11 at 18:35
feedback

Thanks Pablo, just what I was looking for! However, if I can take the liberty of improving your script slightly, I suggest replacing your ^V macro with the following:

; Use backslash instead of backtick (yes, I am a C++ programmer).
#EscapeChar \

; Paste in command window.
^V::
StringReplace clipboard2, clipboard, \r\n, \n, All
SendInput {Raw}%clipboard2%
return

The advantage of using SendInput is that (i) it doesn't rely on the command prompt system menu having an "Alt+Space E P" menu item to do the pasting (works for English and Spanish, but not for all languages) and (ii) it avoids that nasty flicker you get as the menu is created and destroyed.

Note, it's important to include the "{Raw}" in the SendInput command, in case the clipboard happens to contain "!", "+", "^" or "#".

Note, it uses StringReplace to remove excess Windows carriage return characters. Thanks hugov for that suggestion!

link|improve this answer
good one, improvements are always welcome! – PabloG May 31 '10 at 15:15
feedback

This is not really a shortcut but just a quick access to the control menu: Alt-space E P

If you can use your mouse, right click on the cmd window works as paste when I tried it.

link|improve this answer
Yes, right click works fine but that's what I'm trying to avoid. – sme Sep 25 '08 at 7:41
feedback

You could try using Texter and create something unlikely like:

./p , triggered by space and replacing the text with %c

I just tested it and it works fine. The only gotcha is to use a rare sequence, as Texter cannot restrict this to just cmd.

There are probably other utilities of this kind which could work, and even AutoHotKey, upon which Texter is built could do it better, but Texter is easy :-)

link|improve this answer
feedback

Thanks, Pablo, for referring to AutoHotkey utility. Since I have Launchy installed which uses Alt+Space I had to modify it a but to add Shift key as shown:

; Paste in command window
^V::
; Spanish menu (Editar->Pegar, I suppose English version is the same, Edit->Paste)
Send !+{Space}ep
return
link|improve this answer
feedback

@Huw Thanks for the suggestion, I had just implemented some of these terminal shortcuts after having CTRL+L != cls

Here's how I did it: http://josetrigueros.com/blog/?p=8

Also used AutoHotkey

link|improve this answer
feedback

A simpler way is to use windows powershell instead of cmd. itworks fine with texter.

link|improve this answer
feedback

I've recently found that command prompt has support for context menu via the right mouse click. You can find more details here: http://www.askdavetaylor.com/copy_paste_within_microsoft_windows_command_prompt.html

link|improve this answer
feedback

Under VISTA Command prompt: Click on the System Icon Select Defaults from the Menu On the Options tab in the Options group I have "Quick Edit Mode", "Insert Mode", and "Auto Complete" selected I think that "Quick Edit Mode" is what makes it work.

To paste whatever is in the Clipboard at the insertion point: Right Click. To copy from the Command Window Select by holding down the left mouse button and dragging the pointer across what you want to copy Once selected, right click To paste at the insertion point, right click again.

link|improve this answer
feedback

No, there's no keyboard shortcut for pasting.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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