Is there a way to unhook a global hotkey in windows?

0

2

I'm running Windows 7, and I installed an application that installed a global hot key (ctrl+shift+space) which conflicts with another application (Visual Studio) that uses that hotkey (though, not globally, only applications specific).

The question is, knowing which application it is (ScanSnap Manager) and that it doesn't have a setting to turn off the hot key, is there a way I disable it through Windows somehow?

Thanks!

user27992

Posted 2010-02-12T01:54:33.313

Reputation:

Answers

3

If it's conflicting with Visual Studio, you can use Autohotkey to send the keys to the Visual Studio window.

I don't know if all VS applications use the same window class, but Visual C# uses wndclass_desked_gsk. You can determine the class used with the Window Spy utility that comes packaged with Autohotkey.

#IfWinActive ahk_class wndclass_desked_gsk
^+space::ControlSend, ,^+space,ahk_class wndclass_desked_gskit
#IfWinActive

John T

Posted 2010-02-12T01:54:33.313

Reputation: 149 037

1Yup . Autohotkey is the best thing I know :) – Dzung Nguyen – 2010-02-12T04:42:38.047

Wow... works for me... I'm not sure why you put "wndclass_desked_gskit" rather than "wndclass_desked_gsk"... I just put the class name, which I found with a simple AHK script which I have had the temerity to add to your answer... – mike rodent – 2016-07-22T18:24:05.667