Possible Duplicate:
How do I paste into the Windows CMD prompt by using only the keyboard?
The usual way to paste text in a cmd.exe shell is to right-click. How can you paste text using only the keyboard?
The usual way to paste text in a cmd.exe shell is to right-click. How can you paste text using only the keyboard? |
|||||||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
ALT+Space E P :
|
|||||||
|
in AutoHotKey, allowing you to Control+V to paste :) With AutoIt you can also fix the ALT-F4 on your command prompt. Combined the script will be:
#Include <HotKey.au3>
#Include <vkConstants.au3>
; Assign "CTRL-V" to PasteDos()
_HotKeyAssign(BitOR($CK_CONTROL, $VK_V), 'PasteDos', -1, "[CLASS:ConsoleWindowClass]")
; Assign "ALT-F4" to ExitDoc()
_HotKeyAssign(BitOR($CK_ALT, $VK_F4), 'ExitDos', -1, "[CLASS:ConsoleWindowClass]")
; Make sure we don't exit
While 1
Sleep(10)
WEnd
Func PasteDos()
Send(ClipGet ( ))
EndFunc
Func ExitDos()
WinClose("[ACTIVE]", "")
EndFunc
To get this running install AutoIt, add the Hotkey include, save the above script with au3 extension and run it. Enjoy. |
||||
|
|
|
You can read more about it here. The short (but unpleasant answer) is:
|
|||||
|
|
In addition to these answers, it might be noted that in cmd.exe you have to enable quick-edit mode in order for alt+space, p to work. Quick-edit mode can be enabled by clicking on the top left corner in cmd.exe, then selecting properties, then going to the options tab. |
|||
|
|