Disable Win+Space keyboard-layout switch in Windows 10
When I have multiple keyboard layouts enabled, Windows 10 seems to switch between them randomly (similar to what's described here). I suspect I am accidentally pressing Win+Space, so I'd like to disable this shortcut.
However, looking at the "language options" page, I don't see any settings related to this keyboard shortcut, or a way to disable it. How can I disable this shortcut?
57 Answers
Disable Win+Space keyboad-layout swap
AFAIK this is the only way to disable Win+Space keyboad-layout swap without disabling all other Win+XYZ shortcuts:
This is how to do it:
- Download AHK (AutoHotkey)
- Install AHK
Replace whatever is there with this (and save):
#space::Run script by double clicking the newly created .exe and do a test. Rename it whatever you want and store it for the next time you want to disable the
Win+Spaceshortcut.
Additional step to make it persistent:
Copy the .exe to the startup folder. Below I've listed the path for the folders:
Current user:
C:\Users\%Username%\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup
All users:
10C:\ProgramData\Microsoft\Windows\Start Menu\Programs\StartUp
You can also use the new PowerToys for Windows 10 to remap it. In my case I remapped it so that it brings up PowerToys Run when I press Win-Space
This is an addition to the answer from Calsal, as I had the same problem that he described, but in Windows 10.
For Windows 10:
- go to Edit language and keyboard options -> Advanced Keyboard Settings -> Language Bar Options -> Advanced Key Settings
- select Change Key Sequence for Between Input Languages
- change "Switch Keyboard Layout" to "Not Assigned"
enjoy the good life. The Windows+Space option still works; if you want that, see the upvoted answer.
1I found this while experiencing the same problem as the OP, on Windows 10. My findings were that Calsal's down-voted answer was what actually worked for me.
My problem had nothing to do with the Win+Space hotkey. Instead, it was switching "randomly" to "ENG INTL" because the hotkeys for "Between Input Languages" were configured by default to switch the keyboard layout if you pressed "Ctrl + Shift". As a programmer who uses lots of hotkeys, I end up hitting "Ctrl" and "Shift" at the same time a lot.
2If you DON'T have multiple keyboard layouts enabled, but Win+Space keeps switching to other options anyway as if you had, you can just add those languages/keyboards under Language Options, then remove them.
In my case, I only had pt-br ABNT2 enabled, but Win+Space would act as if pt-br ABNT and English US were enabled too. By adding then removing them, Windows finally realized they were disabled, and Win+Space stopped popping up on the screen for lack of other options.
This is not the exact situation the OP was in, but it's a correct solution for when Windows is behaving as if it were in that situation.
4You can directly open the dialog where you can configure the hotkeys using the following command:
Press Win+R and execute
"C:\Windows\system32\rundll32.exe" Shell32.dll,Control_RunDLL input.dll,,{C07337D3-DB2C-4D0B-9A93-B722A6C106E2}{HOTKEYS} 3 This has bothered me as well for a long time especially when I am playing games. The simplest way is to keep only the language that you'd prefer and remove the rest of them. It also clears the language option from taskbar and makes it look simplistic.
1