26

Not a duplication of Disable [Windows]+[Space] hotkey in Windows 8

The question and answers in the link above talked about removing the input methods to stop switching of the methods. I differ because I want to KEEP the input methods. But remove/disable/prevent the [Windows]+[Space] hotkey for toggling them.

I have two Inputs Methods. (Two keyboard layouts in fact), The Standard UK layout, and created a second keyboard layout, I have called it ABC Layout, but its actually just a bunch extra symbols like copyright and a large number of other such symbols.

There is a Hotkey in windows 8.. Its [Windows]+[Space].. I would like to disable this. This hotkey toggles between the two Inputs.. Sounds convenient, but it really is not. I don't know how or when, but it seems I sometimes hit this Hotkey without wanting to and end up with all sorts of gack on the screen if I am reading something off a second screen/paper.

I have gone into the logical location in the settings that deal with input and language control and the Hotkeys that deal with them. As you can see in the picture I had supplied, I have already removed the Hotkey for toggling [Please see image below], but Pressing [Windows]+[Space] still toggles the Input Mode.

No Hotkey

It seems in Win8, they have these options, but then just ignore them and do whatever it wants anyway as I have ALSO set language bar to be Hidden. But as you can clearly see in the screenshot, it's still there.

Hidden Selected Still Showing

WORMSS
  • 1,016

4 Answers4

12

It doesn't seem like there's a natural way to do this from within Windows 8, but you can do it using AutoHotkey. Download and run/install AutoHotKey, right click on some folder, then New>AutoHotKey Script. Edit that with Notepad or Notepad++ and add this hotkey:

#Space::
return

That remaps the Win(#)+Space(Space) button to do nothing. Then you just run the AutoHotkey Script. To get it to run automatically when your computer starts, put the script into the startup folder.

Hopefully autohotkey isn't too intrusive. Maybe you'll find some other uses for it (I think I first found out about it when I was trying to remap Caps-Lock so that it doesn't do anything, since that's the world's most pointless key).

Paul
  • 632
2

It's very simple.

  • Install PowerToys.

  • Enable "PowerToys Run".

  • Change the hotkey to Windows+Space.

  • Check the option "Use centralized keyboard hook".

Now you can enjoy having a mac-like search. You will not have to deal with the input accidentally changing, since this hotkey will override that :)

0

You can disable the windows + shortcut keys multiple ways:

Over windows registry:

HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]
"NoWinKeys"=dword:00000001

In group policy editor (gpedit.msc):

User Configuration -> Administrative Templates -> Windows Components -> Windows Explorer -> Turn off Windows + X hotkeys

And you also can disable the windows key completely with Widnows Scancode Map feature. To do it, i recommend to download an open source application called SharpKeys.

You can add new keymap, type the key (press win button), and select Turn Key Off option (see the picture bellow).

sharpkeys win button remap

Press write to registry button, and restart windows.

voji
  • 616
0

I use a combination of Pulover's MacroCreator and EventGhost. But you should be able to do this just using EventGhost.

The nice thing about EventGhost is that you can still use Windows+key shortcuts in another application so you don't need to disable the windows key completely.

For example, for the windows+space shortcut. You just need the keyboard plugin in Autostart, and a macro to emulate the win+space keystroke in the active application.

In the macro, you'll need the event (Keyboard.Win+Space), followed by an Emulate Keystrokes action, with the Text to type being {Win+Space}, and check the box for use alternate method to emulate keypresses.

http://www.eventghost.net/#download

I'd recommend using the stable 0.4 release since the 0.5 pre-release has some errors on startup that may cause problems.

enter image description here

MikMak
  • 2,169