vote up 6 vote down star
5

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.

flag

6 Answers

vote up 11 vote down check

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|flag
Nice...wish I'd known about this ages ago. +1 – Kev Oct 29 at 16:56
vote up 10 vote down

Yes.. but awkward. Link

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

link|flag
2  
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 at 15:40
vote up 3 vote down

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|flag
vote up 0 vote down

No, there's no keyboard shortcut for pasting.

link|flag
vote up 0 vote down

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|flag
Yes, right click works fine but that's what I'm trying to avoid. – sme Sep 25 '08 at 7:41
vote up 0 vote down

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|flag

Your Answer

Get an OpenID
or

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