Disable Windows Key and Alt Tab using AutoHotkey

AutoHotkey script to disable Windows key, Windows key + Tab and Alt + Tab key, useful to prevents accidentally pressing the keys when playing games, etc . . . Disable Alt+Tab ;!Tab::Return LAlt & Tab::Return ; Disable Windows Key + Tab #Tab::Return ; Disable Left Windows Key LWin::Return ; Disable Right Windows Key ;RWin::Return The script above will disable Left Windows key and Left Alt + Tab key only, if you would like to disable both alt tab keys uncomment the following line:...

October 31, 2015 ยท Sebastian