2

Is there a way to disable the Windows key, while I'm in a full-screen game?

arberg
  • 161

3 Answers3

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.

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.

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.

DDS
  • 759