☕ Buy a Coffee
Home / Windows & SysAdmin

Disable 'Sticky Keys' Permanently in Windows

Eliminate the annoying accessibility popup that interrupts gaming sessions when tapping the Shift key 5 times in rapid succession.

Sachin Siju
Sachin Siju
Lead Systems Engineer & Tech Blogger
Jul 02, 2026 3 min read
Disable 'Sticky Keys' Permanently in Windows

Why Sticky Keys Keeps Popping Up

Sticky Keys is a Windows accessibility feature that lets you press modifier keys (Shift, Ctrl, Alt) one at a time instead of holding them, which is genuinely useful for people who can't comfortably hold multiple keys at once. The problem is its default activation shortcut: pressing Shift five times in a row triggers it. That's an extremely easy sequence to hit by accident — mashing Shift during a game, spamming it while bunny-hopping, or just typing quickly with a heavy hand on the shift key — and every time it fires, a dialog interrupts whatever you're doing and asks if you want to turn it on. Disabling the shortcut (and the feature itself) removes the interruption for good.

Method 1: Settings App (Windows 11)

  1. Open Settings (Win + I).
  2. Go to Accessibility → Keyboard.
  3. Toggle Sticky Keys to Off if it's currently on.
  4. Click into Sticky Keys to expand its options, and toggle off Allow the shortcut key to start Sticky Keys.

That second toggle is the important one — it's entirely possible to have Sticky Keys itself off but the shortcut still enabled, in which case pressing Shift five times just brings up the "do you want to turn this on" prompt again, which is the exact popup you're trying to eliminate.

Method 2: Control Panel (Windows 10 and 11)

  1. Press Win + R, type control access.cpl, and press Enter to open the Ease of Access Center directly.
  2. Click Change how your keyboard works.
  3. Uncheck Turn on Sticky Keys.
  4. Click Set up Sticky Keys just below it, and uncheck Turn on Sticky Keys when SHIFT is pressed five times.
  5. Click OK on both dialogs to save.

Method 3: Registry (Scriptable / Permanent)

If you're setting this up on multiple machines or want it enforced via a script rather than clicking through dialogs, the Sticky Keys shortcut behavior lives in the registry under the current user's Accessibility settings. Open an elevated Command Prompt or PowerShell and run:

Set-ItemProperty -Path "HKCU:\Control Panel\Accessibility\StickyKeys" -Name "Flags" -Value "58"

A Flags value of 58 disables both Sticky Keys itself and the five-Shift-presses shortcut that triggers the popup. The default fresh-install value is 510, which has the feature off but the shortcut listening. If you ever want to restore default behavior, set it back to 510.

Tip: The same fix applies to the other two accessibility shortcuts that can trigger similar popups: Filter Keys (holding a key too long or repeatedly) and Toggle Keys (holding Num Lock for 5 seconds). Their equivalent registry keys are HKCU:\Control Panel\Accessibility\Keyboard Response and HKCU:\Control Panel\Accessibility\ToggleKeys respectively, both using the same Flags value pattern.

Verifying It's Gone

Press Shift five times quickly. If nothing happens, the shortcut is fully disabled. If you still see the popup, double-check you unchecked the shortcut option specifically — not just the "Turn on Sticky Keys" checkbox, which only controls whether the feature is currently active, not whether the trigger shortcut is listening.

Wrap-Up

The GUI toggle in Settings or Control Panel is enough for a single machine and takes under a minute. Reach for the registry value if you're scripting a setup for multiple PCs or want the change to survive a fresh account profile without repeating the click-through every time.

Featured Infrastructure Partner

Deploy on High-Performance Hostinger Cloud

Get up to 75% OFF + free domain & SSL. Powering xube.me's sub-second response times.

Claim Discount ↗

Discussion & Insights

Related Technical Essays