Tuesday, August 17, 2010

Ctrl+V for Pasting in the Windows Command Prompt

1. Install AutoHotkey

2. Save the following code as PasteCommandPrompt.ahk

#IfWinActive ahk_class ConsoleWindowClass
^V::
SendInput {Raw}%clipboard%
return
#IfWinActive



3. Double click PasteCommandPrompt.ahk file. Now you all set. You can apply Ctrl + V in command window.

No comments:

Post a Comment