Is there a way to disable the Windows key, while I'm in a full-screen game?
Asked
Active
Viewed 3.1k times
3 Answers
3
Try WinKill. It sits in the systray; click the icon to toggle the Windows key on/off.
You could also consider getting yourself a gaming keyboard. Some of these (for example, in the Logitech G series) come with physical switches to turn the Windows key on/off. It saves Alt-Tabbing out of the game to do this.
Peter Mortensen
- 12,326
MiG
- 1,130
1
Install AutoHotkey
Edit to add your games and run the script DisableWinKey.ahk:
#If WinActive("Last Epoch") or WinActive("Path of Exile") or WinActive("Starcraft II")LWIN:: RWIN::
Alternatively, look for a way to detect full screen applications in AutoHotkey, maybe like this detect-fullscreen question.
Peter Mortensen
- 12,326
arberg
- 161
0
The best way, in my opinion, is to get an older keyboard without Windows keys (something from before the Windows 95 era) and a USB-to-PS/2 adapter.
Peter Mortensen
- 12,326
DDS
- 759