How To Disable Hotkeys On Windows 10

Опубликовано: 08 Август 2026
на канале: Trevor Nace
3,760
25

Let's show you how to disable hotkeys on your Windows 10 PC or laptop.

In this video, I'm going to walk you through the steps to disable hotkeys on your Windows 10 device. First, download the program AutoHotkey - Script creator https://www.autohotkey.com/. You'll also need a basic code editor like Notepad++ - Script editor https://notepad-plus-plus.org/downloads/.

Once you have these installed, go to your desktop and right-click in an empty space, hover over New and then select Autohotkey Script. We can name it Disable Hotkey. Right-click on it and then select Edit with Notepad++. You can go to the AutoHotkey Website and go to Hotkey guide you'll get the syntax. AutoHotkey Hotkey Modifier Guide https://www.autohotkey.com/docs/Hotke...

Sample Code that disables Win key, alt, and tab keys. You can copy
and paste these directly into your Ahk file:

#=::Return

; Disable Alt+Tab
!Tab::Return

; Disable Windows Key + Tab
#Tab::Return

; Disable Left Windows Key
LWin::Return

; Disable Right Windows Key
RWin::Return

*Note: the lines or phrases that have a ";" represent a comment.
This is not the actual part of the script. I just put it to describe
the script. The phrases underneath it are the actual scripts.
Comments are used to keep your coding organized!

Once you have created your script, you can right-click on the hotkey script and Run Script. You can disable the script by closing the script.

I hope this video helped solve your problem. App still not working? If so, drop your question in a comment below!