Skip to content

Instantly share code, notes, and snippets.

@avivace
Last active January 2, 2016 15:07
Show Gist options
  • Save avivace/b52e73e4126bfc7a4436 to your computer and use it in GitHub Desktop.
Save avivace/b52e73e4126bfc7a4436 to your computer and use it in GitHub Desktop.
Kills active process on CTRL+ALT+F4
;; 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