Paste With CTRL+V In Windows Command Prompt

I often use terminal to analyze the network or do something both in Linux and Windows. But for command prompt or terminal in Windows you cannot copy and paste easily. Especially paste the command with Ctrl+V key. To paste the text or command you have to do it with mouse click. And this is slowing me down. After i did research sometimes on the net i found how to do it. Now i can copy and paste with shortcut key.

See the picture below to do Paste in command prompt:
windows-command-prompt

It’s not totally convenient, isn’t it? So i have the solution how to paste with shortcut key in Windows command prompt.

Follow the steps below to paste with CTRL+V in Windows Command Prompt:

  1. Download AutoHotKey
  2. Install it and follow the wizard until it finish
  3. Create a new AutoHotkey script or add the following to your existing script:
    #IfWinActive ahk_class ConsoleWindowClass
    ^V::
    SendInput {Raw}%clipboard%
    return
    #IfWinActive
  4. The script will keep running until you kill the AutoHotKey process at the tray bar.
  5. Now you can paste with Ctrl+V on Windows command prompt

Download AutoHotKey
Download Ctrl+V script

Give me your feedback

This site uses Akismet to reduce spam. Learn how your comment data is processed.