Skip to content

Instantly share code, notes, and snippets.

@ancms2600
Created March 26, 2018 17:42
Show Gist options
  • Save ancms2600/f429ebc78ce47b6eadd878af3eaaa1ab to your computer and use it in GitHub Desktop.
Save ancms2600/f429ebc78ce47b6eadd878af3eaaa1ab to your computer and use it in GitHub Desktop.
AutoHotkey Script to type out clipboard contents (useful for VMWare vSphere Remote Console, which cannot paste)
; Ctrl-Shift-O
^!o::
; wait 2 seconds
Sleep, 2000
; type out clipboard contents
sendraw %clipboard%
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment