Disabling Windows Speech Recognition Shortcut Ctrl+Win+S
Problem
I was writing a document, and mistouched Win button when I tried saving it; then a pop-up window appears like in Figure 1, which is very annoying. I know it might be useful to some people, but not for me.
Solution
A Wrong One: gpedit
In gpedit.msc, go to Computer Config -> Managing Templates -> Control Panel -> Locale and Language Options, then disable Allowing user to enable online speech recognition service.
gpedit.msc.
After rebooting, it didn’t go away when I press Ctrl+Win+S.
AutoHotkey
After a bit of searching, I found a small tool called AutoHotkey. I downloaded the .zip portable version, which is just my personal preference.
2 steps remain:
- Write a
.ahkscript; - Add
autohotkey64.exeto the list of executed programs after booting up.
Script
; [path_to_autohotkey64.exe]/autohotkey64.ahk
#^s::return ; ctrl+win+s(btw this code block won’t be such beautiful if I use it without a proper assigned language marked)
It works after running autohotkey64.exe.
Autostart on Booting
In Run window (Win+R), go to shell:startup, create a shortcut of autohotkey64.exe.
Now it works perfectly from booting up.