How can I disable the Ctrl+Shift hotkey (keyboard layout switching) in Windows 10 using AutoHotkey?
(However I would like to keep all combinations of this: Ctrl+Shift+Any other key)
I've tried this, but it's not blocking the hotkey:
; Test.ahk
; Try disable Ctrl+Shift
+^::
Edit:
I've found a way to disable it in newer Windows 10 builds without AHK:
https://superuser.com/a/1322396
But I think the question is still standing.