Last active
January 2, 2016 15:07
-
-
Save avivace/b52e73e4126bfc7a4436 to your computer and use it in GitHub Desktop.
Kills active process on CTRL+ALT+F4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; https://autohotkey.com/download/ahk-install.exe | |
^!F4:: | |
WinGet, active_id, PID, A | |
run, taskkill /PID %active_id% /F,,Hide | |
return |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment