Is there a way to disable certain Windows 7 shortcuts?

Specifically, I want to disable Alt+Space and WinKey+Space.

link|improve this question

40% accept rate
feedback

1 Answer

up vote 5 down vote accepted

In AutoHotkey, set the following hotkeys:

!space::return
#space::return

The first line will disable the ALT+Space shortcut.

The second line will disable the Windows+Space shortcut.

link|improve this answer
Thanks!!! Works great! – lajos Oct 27 '09 at 3:22
1  
Thanks for the tip. I varied it slightly for my needs so that Windows+Space still sends a space to the keyboard. #space:: SendInput {Space} return – Jeromy Anglim Jun 11 '10 at 3:10
+1 for the cool Windows key. – Gareth Aug 17 '11 at 4:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.