M BUZZ CRAZE NEWS
// general

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

By Jessica Wood

My current technique is to right-click in the command prompt and then click paste. This bugs me - is there a better way?

1

5 Answers

Its not amazingly user friendly, but you can paste with ALT+Space, e, p.

From here.

This was solved on Server Fault:

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 
0

alt+space+E+P should do it

Control and V, like the rest of the OS :P

#IfWinActive, ahk_class ConsoleWindowClass
^v:: Send !{Space}ep
#IfWinActive

(Yep, that's just automating the previous answers, but automating them it is. Autohotkey! :))

On Windows 10, you can enable Ctrl + C and Ctrl + V to work in the command prompt:

enter image description here

enter image description here

2

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy