Windows – Disable Windows logo key + Ctrl + S keyboard shortcut

default settingskeyboardkeyboard shortcutsshortcutswindows 10

can someone tell me how to disable Win+ctrl+S shortcut in Windows 10?

My OS:

OS Name:                   Microsoft Windows 10 Pro
OS Version:                10.0.17134 N/A Build 17134

This new shortcut came with the last feature update (Feature update to Windows 10 (consumer editions), version 1803, en-us)…

Thanks!

Best Answer

I did it with AutoHotKey:

^#s::
    Return

this is all you need to do.

if you want to do something with this combination, you can do it like this:

^#s::
    Send {Shift down}+{Alt down}+s+{Shift up}+{Alt up}
    Return
Related Question