Skip to content

Instantly share code, notes, and snippets.

@ferdbold
Created June 7, 2016 19:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ferdbold/543946a23e5a6b41d5a5172b011b3c45 to your computer and use it in GitHub Desktop.
Save ferdbold/543946a23e5a6b41d5a5172b011b3c45 to your computer and use it in GitHub Desktop.
Bind your Print Screen key to Snipping Tool in Windows 7
; Win7 doesn't allow for binding the PrintScrn key to a shortcut. So instead, you can use
; this Autohotkey script to intercept the key and rebind it to another hotkey
; (here Ctrl+Alt+1), that can be set inside the properties of the Snipping tool shortcut.
; Enjoy!
SendMode, Input
PrintScreen::
Send, ^!{1}
return
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment