How can I determine which process owns a hotkey in Windows?
Given a hotkey, how can I find which program owns it?
windows keyboard-shortcuts
add a comment |
Given a hotkey, how can I find which program owns it?
windows keyboard-shortcuts
1
which version of windows?
– Ivo Flipse♦
Jul 23 '09 at 9:52
add a comment |
Given a hotkey, how can I find which program owns it?
windows keyboard-shortcuts
Given a hotkey, how can I find which program owns it?
windows keyboard-shortcuts
windows keyboard-shortcuts
edited Mar 24 '16 at 23:05
Ben N
29.6k1398145
29.6k1398145
asked Jul 23 '09 at 9:49
aldrinlealaldrinleal
533156
533156
1
which version of windows?
– Ivo Flipse♦
Jul 23 '09 at 9:52
add a comment |
1
which version of windows?
– Ivo Flipse♦
Jul 23 '09 at 9:52
1
1
which version of windows?
– Ivo Flipse♦
Jul 23 '09 at 9:52
which version of windows?
– Ivo Flipse♦
Jul 23 '09 at 9:52
add a comment |
3 Answers
3
active
oldest
votes
Caution: If you use Win 8 or later, do not use this utility as it will create some trouble - see comments.
If you are running a Windows earlier than Windows 8, then Windows Hotkey Explorer
is probably what you want. This is also mentioned in the StackOverflow question: Find out what process registered a global hotkey? (Windows API).
28
HotKey explorer screws up pretty badly in Windows 8 - on startup it basically "presses" every hotkey, causing all kinds of weird stuff to happen, after which it locks up and has to be killed.
– Nathan Ridley
Jan 18 '15 at 19:19
2
@NathanRidley Ugh. I wish I read your comment before. This was a horrible combination with Win8 and Autohotkey. This kind of keyboard bashing could have done some serious damage too.
– VitalyB
Aug 9 '15 at 7:25
10
Do NOT use Hotkey Explorer on Windows 10 either. It does the same thing @NathanRidley mentioned. Just found out the hard way.
– Artem Russakovskii
Aug 11 '15 at 16:35
5
Also pretty screwy on Windows 7. It switched my main monitor's resolution to 640x480 (multi monitor set up).
– Costa
Aug 29 '15 at 16:08
3
I wish there was a more recent tool like Hotkey Exporer that works for Windows 8 & 10
– Flion
Jan 16 '16 at 17:09
|
show 8 more comments
This works for me in Win10 (and probably all other even vaguely-recent versions of Windows)... also copied here from https://stackoverflow.com/a/43645062/995048 since this page seems to come up first in search results:
One possible way is to use the Visual Studio tool Spy++.
Give this a try:
- Run the tool (for me, it's at
C:Program Files (x86)Microsoft Visual Studio2017CommunityCommon7Toolsspyxx_amd64.exe
)
- In the menu bar, select Spy -> Log messages... (or hit Ctrl + M)
- Check All Windows in System in the Additional Windows frame
- Switch to the Messages tab
- Click the Clear All button
- Select
WM_HOTKEY
in the listbox, or check Keyboard in Message Groups (if you're OK with more potential noise)
- Click the OK button
- Press the hotkey in question (Win + R, for example)
- Select the
WM_HOTKEY
line in the Messages (All Windows) window, right click, and select Properties... in the context menu
- In the Message Properties dialog, click the Window Handle link (this will be the handle for the window that received the message)
- Click the Synchronize button on the Window Properties dialog. This will show the window in the main Spy++ window treeview.
- On the Window Properties dialog, select the Process tab
- Click the Process ID link. This will show you the process (In my Win + R case:
EXPLORER
)
3
This is a great answer, it is a lot of steps but gives perfectly detailed information. Note that you will need to install SPY++ somehow and that you need to run the 64bit version on a 64bit PC or it won't work. I think the 'easiest' way to install SPY++ is to install Visual Studio 2017, be sure to select the C++ payload. For non developers this might be a bit too much work.
– Roy T.
May 12 '17 at 8:27
2
This is perfect. Elaborate, but perfect!
– angularsen
May 24 '17 at 21:04
13
Great answer! Just a note that the 64-bit version of Spy++ catches only messages for 64-bit applications, so if you don't see theWM_HOTKEY
message in the Message log after pressing the hotkey, you may need to run the 32-bit version of Spy++.
– Dawid Ferenczy
Jul 17 '17 at 14:54
Link should be updated to new documentation site. For Visual Studio 2017, the only required payload is "Visual C++ core desktop features". Application specific hotkey is not logged? For example, Ctrl + B in MS Word will make the text bold.
– Franklin Yu
Aug 3 '18 at 21:40
Thank you so much for this. I FINALLY found out what was stealing Ctrl Shift F from me. (It was Razer Cortex). Another note is that sometimes spy++ will crash when you try to view the properties. (And then you cannot see any more hooks until rebooting.) I was able to resolve this by right clicking, before step 9, and choosing "Stop Logging Message". At that point, it no longer crashed when I attempted to examine the properties. Thanks again!
– Khale_Kitha
Sep 21 '18 at 13:20
|
show 1 more comment
This has probably been answered on Stack Overflow in this thread:
Find out what process registered a global hotkey? (Windows API)
Here's Pauk's answer:
Your question piqued my interest, so I've done a bit of digging and
while, unfortunately I don't have a proper answer for you, I thought
I'd share what I have.
I found this example of creating keyboard hook (in Delphi)
written in 1998, but is compilable in Delphi 2007 with a couple of
tweaks.
It's a DLL with a call to
SetWindowsHookEx
that passes through a
callback function, which can then intercept key strokes: In this case,
it's tinkering with them for fun, changing left cursor to right, etc.
A simple app then calls the DLL and reports back its results based on
a TTimer event. If you're interested I can post the Delphi 2007 based
code.
It's well documented and commented and you potentially could use it as
a basis of working out where a key press is going. If you could get
the handle of the application that sent the key strokes, you could
track it back that way. With that handle you'd be able to get the
information you need quite easily.
Other apps have tried determining hotkeys by going through their
Shortcuts since they can contain a Shortcut key, which is just another
term for hotkey. However most applications don't tend to set this
property so it might not return much. If you are interested in that
route, Delphi has access toIShellLink
COM interface which you could
use to load a shortcut up from and get its hotkey:
uses ShlObj, ComObj, ShellAPI, ActiveX, CommCtrl;
procedure GetShellLinkHotKey;
var
LinkFile : WideString;
SL: IShellLink;
PF: IPersistFile;
HotKey : Word;
HotKeyMod: Byte;
HotKeyText : string;
begin
LinkFile := 'C:TempTemp.lnk';
OleCheck(CoCreateInstance(CLSID_ShellLink, nil, CLSCTX_INPROC_SERVER, IShellLink, SL));
// The IShellLink implementer must also support the IPersistFile
// interface. Get an interface pointer to it.
PF := SL as IPersistFile;
// Load file into IPersistFile object
OleCheck(PF.Load(PWideChar(LinkFile), STGM_READ));
// Resolve the link by calling the Resolve interface function.
OleCheck(SL.Resolve(0, SLR_ANY_MATCH or SLR_NO_UI));
// Get hotkey info
OleCheck(SL.GetHotKey(HotKey));
// Extract the HotKey and Modifier properties.
HotKeyText := '';
HotKeyMod := Hi(HotKey);
if (HotKeyMod and HOTKEYF_ALT) = HOTKEYF_ALT then
HotKeyText := 'ALT+';
if (HotKeyMod and HOTKEYF_CONTROL) = HOTKEYF_CONTROL then
HotKeyText := HotKeyText + 'CTRL+';
if (HotKeyMod and HOTKEYF_SHIFT) = HOTKEYF_SHIFT then
HotKeyText := HotKeyText + 'SHIFT+';
if (HotKeyMod and HOTKEYF_EXT) = HOTKEYF_EXT then
HotKeyText := HotKeyText + 'Extended+';
HotKeyText := HotKeyText + Char(Lo(HotKey));
if (HotKeyText = '') or (HotKeyText = #0) then
HotKeyText := 'None';
ShowMessage('Shortcut Key - ' + HotKeyText);
end;
If you've got access to Safari Books Online, there is a good
section about working with shortcuts / shell links in the Borland
Delphi 6 Developer's Guide by Steve Teixeira and Xavier Pacheco. My
example above is a butchered version from there and this site.
Hope that helps!
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f11308%2fhow-can-i-determine-which-process-owns-a-hotkey-in-windows%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
Caution: If you use Win 8 or later, do not use this utility as it will create some trouble - see comments.
If you are running a Windows earlier than Windows 8, then Windows Hotkey Explorer
is probably what you want. This is also mentioned in the StackOverflow question: Find out what process registered a global hotkey? (Windows API).
28
HotKey explorer screws up pretty badly in Windows 8 - on startup it basically "presses" every hotkey, causing all kinds of weird stuff to happen, after which it locks up and has to be killed.
– Nathan Ridley
Jan 18 '15 at 19:19
2
@NathanRidley Ugh. I wish I read your comment before. This was a horrible combination with Win8 and Autohotkey. This kind of keyboard bashing could have done some serious damage too.
– VitalyB
Aug 9 '15 at 7:25
10
Do NOT use Hotkey Explorer on Windows 10 either. It does the same thing @NathanRidley mentioned. Just found out the hard way.
– Artem Russakovskii
Aug 11 '15 at 16:35
5
Also pretty screwy on Windows 7. It switched my main monitor's resolution to 640x480 (multi monitor set up).
– Costa
Aug 29 '15 at 16:08
3
I wish there was a more recent tool like Hotkey Exporer that works for Windows 8 & 10
– Flion
Jan 16 '16 at 17:09
|
show 8 more comments
Caution: If you use Win 8 or later, do not use this utility as it will create some trouble - see comments.
If you are running a Windows earlier than Windows 8, then Windows Hotkey Explorer
is probably what you want. This is also mentioned in the StackOverflow question: Find out what process registered a global hotkey? (Windows API).
28
HotKey explorer screws up pretty badly in Windows 8 - on startup it basically "presses" every hotkey, causing all kinds of weird stuff to happen, after which it locks up and has to be killed.
– Nathan Ridley
Jan 18 '15 at 19:19
2
@NathanRidley Ugh. I wish I read your comment before. This was a horrible combination with Win8 and Autohotkey. This kind of keyboard bashing could have done some serious damage too.
– VitalyB
Aug 9 '15 at 7:25
10
Do NOT use Hotkey Explorer on Windows 10 either. It does the same thing @NathanRidley mentioned. Just found out the hard way.
– Artem Russakovskii
Aug 11 '15 at 16:35
5
Also pretty screwy on Windows 7. It switched my main monitor's resolution to 640x480 (multi monitor set up).
– Costa
Aug 29 '15 at 16:08
3
I wish there was a more recent tool like Hotkey Exporer that works for Windows 8 & 10
– Flion
Jan 16 '16 at 17:09
|
show 8 more comments
Caution: If you use Win 8 or later, do not use this utility as it will create some trouble - see comments.
If you are running a Windows earlier than Windows 8, then Windows Hotkey Explorer
is probably what you want. This is also mentioned in the StackOverflow question: Find out what process registered a global hotkey? (Windows API).
Caution: If you use Win 8 or later, do not use this utility as it will create some trouble - see comments.
If you are running a Windows earlier than Windows 8, then Windows Hotkey Explorer
is probably what you want. This is also mentioned in the StackOverflow question: Find out what process registered a global hotkey? (Windows API).
edited May 23 '17 at 12:41
Community♦
1
1
answered Sep 21 '10 at 13:14
Hans-Peter StörrHans-Peter Störr
98641223
98641223
28
HotKey explorer screws up pretty badly in Windows 8 - on startup it basically "presses" every hotkey, causing all kinds of weird stuff to happen, after which it locks up and has to be killed.
– Nathan Ridley
Jan 18 '15 at 19:19
2
@NathanRidley Ugh. I wish I read your comment before. This was a horrible combination with Win8 and Autohotkey. This kind of keyboard bashing could have done some serious damage too.
– VitalyB
Aug 9 '15 at 7:25
10
Do NOT use Hotkey Explorer on Windows 10 either. It does the same thing @NathanRidley mentioned. Just found out the hard way.
– Artem Russakovskii
Aug 11 '15 at 16:35
5
Also pretty screwy on Windows 7. It switched my main monitor's resolution to 640x480 (multi monitor set up).
– Costa
Aug 29 '15 at 16:08
3
I wish there was a more recent tool like Hotkey Exporer that works for Windows 8 & 10
– Flion
Jan 16 '16 at 17:09
|
show 8 more comments
28
HotKey explorer screws up pretty badly in Windows 8 - on startup it basically "presses" every hotkey, causing all kinds of weird stuff to happen, after which it locks up and has to be killed.
– Nathan Ridley
Jan 18 '15 at 19:19
2
@NathanRidley Ugh. I wish I read your comment before. This was a horrible combination with Win8 and Autohotkey. This kind of keyboard bashing could have done some serious damage too.
– VitalyB
Aug 9 '15 at 7:25
10
Do NOT use Hotkey Explorer on Windows 10 either. It does the same thing @NathanRidley mentioned. Just found out the hard way.
– Artem Russakovskii
Aug 11 '15 at 16:35
5
Also pretty screwy on Windows 7. It switched my main monitor's resolution to 640x480 (multi monitor set up).
– Costa
Aug 29 '15 at 16:08
3
I wish there was a more recent tool like Hotkey Exporer that works for Windows 8 & 10
– Flion
Jan 16 '16 at 17:09
28
28
HotKey explorer screws up pretty badly in Windows 8 - on startup it basically "presses" every hotkey, causing all kinds of weird stuff to happen, after which it locks up and has to be killed.
– Nathan Ridley
Jan 18 '15 at 19:19
HotKey explorer screws up pretty badly in Windows 8 - on startup it basically "presses" every hotkey, causing all kinds of weird stuff to happen, after which it locks up and has to be killed.
– Nathan Ridley
Jan 18 '15 at 19:19
2
2
@NathanRidley Ugh. I wish I read your comment before. This was a horrible combination with Win8 and Autohotkey. This kind of keyboard bashing could have done some serious damage too.
– VitalyB
Aug 9 '15 at 7:25
@NathanRidley Ugh. I wish I read your comment before. This was a horrible combination with Win8 and Autohotkey. This kind of keyboard bashing could have done some serious damage too.
– VitalyB
Aug 9 '15 at 7:25
10
10
Do NOT use Hotkey Explorer on Windows 10 either. It does the same thing @NathanRidley mentioned. Just found out the hard way.
– Artem Russakovskii
Aug 11 '15 at 16:35
Do NOT use Hotkey Explorer on Windows 10 either. It does the same thing @NathanRidley mentioned. Just found out the hard way.
– Artem Russakovskii
Aug 11 '15 at 16:35
5
5
Also pretty screwy on Windows 7. It switched my main monitor's resolution to 640x480 (multi monitor set up).
– Costa
Aug 29 '15 at 16:08
Also pretty screwy on Windows 7. It switched my main monitor's resolution to 640x480 (multi monitor set up).
– Costa
Aug 29 '15 at 16:08
3
3
I wish there was a more recent tool like Hotkey Exporer that works for Windows 8 & 10
– Flion
Jan 16 '16 at 17:09
I wish there was a more recent tool like Hotkey Exporer that works for Windows 8 & 10
– Flion
Jan 16 '16 at 17:09
|
show 8 more comments
This works for me in Win10 (and probably all other even vaguely-recent versions of Windows)... also copied here from https://stackoverflow.com/a/43645062/995048 since this page seems to come up first in search results:
One possible way is to use the Visual Studio tool Spy++.
Give this a try:
- Run the tool (for me, it's at
C:Program Files (x86)Microsoft Visual Studio2017CommunityCommon7Toolsspyxx_amd64.exe
)
- In the menu bar, select Spy -> Log messages... (or hit Ctrl + M)
- Check All Windows in System in the Additional Windows frame
- Switch to the Messages tab
- Click the Clear All button
- Select
WM_HOTKEY
in the listbox, or check Keyboard in Message Groups (if you're OK with more potential noise)
- Click the OK button
- Press the hotkey in question (Win + R, for example)
- Select the
WM_HOTKEY
line in the Messages (All Windows) window, right click, and select Properties... in the context menu
- In the Message Properties dialog, click the Window Handle link (this will be the handle for the window that received the message)
- Click the Synchronize button on the Window Properties dialog. This will show the window in the main Spy++ window treeview.
- On the Window Properties dialog, select the Process tab
- Click the Process ID link. This will show you the process (In my Win + R case:
EXPLORER
)
3
This is a great answer, it is a lot of steps but gives perfectly detailed information. Note that you will need to install SPY++ somehow and that you need to run the 64bit version on a 64bit PC or it won't work. I think the 'easiest' way to install SPY++ is to install Visual Studio 2017, be sure to select the C++ payload. For non developers this might be a bit too much work.
– Roy T.
May 12 '17 at 8:27
2
This is perfect. Elaborate, but perfect!
– angularsen
May 24 '17 at 21:04
13
Great answer! Just a note that the 64-bit version of Spy++ catches only messages for 64-bit applications, so if you don't see theWM_HOTKEY
message in the Message log after pressing the hotkey, you may need to run the 32-bit version of Spy++.
– Dawid Ferenczy
Jul 17 '17 at 14:54
Link should be updated to new documentation site. For Visual Studio 2017, the only required payload is "Visual C++ core desktop features". Application specific hotkey is not logged? For example, Ctrl + B in MS Word will make the text bold.
– Franklin Yu
Aug 3 '18 at 21:40
Thank you so much for this. I FINALLY found out what was stealing Ctrl Shift F from me. (It was Razer Cortex). Another note is that sometimes spy++ will crash when you try to view the properties. (And then you cannot see any more hooks until rebooting.) I was able to resolve this by right clicking, before step 9, and choosing "Stop Logging Message". At that point, it no longer crashed when I attempted to examine the properties. Thanks again!
– Khale_Kitha
Sep 21 '18 at 13:20
|
show 1 more comment
This works for me in Win10 (and probably all other even vaguely-recent versions of Windows)... also copied here from https://stackoverflow.com/a/43645062/995048 since this page seems to come up first in search results:
One possible way is to use the Visual Studio tool Spy++.
Give this a try:
- Run the tool (for me, it's at
C:Program Files (x86)Microsoft Visual Studio2017CommunityCommon7Toolsspyxx_amd64.exe
)
- In the menu bar, select Spy -> Log messages... (or hit Ctrl + M)
- Check All Windows in System in the Additional Windows frame
- Switch to the Messages tab
- Click the Clear All button
- Select
WM_HOTKEY
in the listbox, or check Keyboard in Message Groups (if you're OK with more potential noise)
- Click the OK button
- Press the hotkey in question (Win + R, for example)
- Select the
WM_HOTKEY
line in the Messages (All Windows) window, right click, and select Properties... in the context menu
- In the Message Properties dialog, click the Window Handle link (this will be the handle for the window that received the message)
- Click the Synchronize button on the Window Properties dialog. This will show the window in the main Spy++ window treeview.
- On the Window Properties dialog, select the Process tab
- Click the Process ID link. This will show you the process (In my Win + R case:
EXPLORER
)
3
This is a great answer, it is a lot of steps but gives perfectly detailed information. Note that you will need to install SPY++ somehow and that you need to run the 64bit version on a 64bit PC or it won't work. I think the 'easiest' way to install SPY++ is to install Visual Studio 2017, be sure to select the C++ payload. For non developers this might be a bit too much work.
– Roy T.
May 12 '17 at 8:27
2
This is perfect. Elaborate, but perfect!
– angularsen
May 24 '17 at 21:04
13
Great answer! Just a note that the 64-bit version of Spy++ catches only messages for 64-bit applications, so if you don't see theWM_HOTKEY
message in the Message log after pressing the hotkey, you may need to run the 32-bit version of Spy++.
– Dawid Ferenczy
Jul 17 '17 at 14:54
Link should be updated to new documentation site. For Visual Studio 2017, the only required payload is "Visual C++ core desktop features". Application specific hotkey is not logged? For example, Ctrl + B in MS Word will make the text bold.
– Franklin Yu
Aug 3 '18 at 21:40
Thank you so much for this. I FINALLY found out what was stealing Ctrl Shift F from me. (It was Razer Cortex). Another note is that sometimes spy++ will crash when you try to view the properties. (And then you cannot see any more hooks until rebooting.) I was able to resolve this by right clicking, before step 9, and choosing "Stop Logging Message". At that point, it no longer crashed when I attempted to examine the properties. Thanks again!
– Khale_Kitha
Sep 21 '18 at 13:20
|
show 1 more comment
This works for me in Win10 (and probably all other even vaguely-recent versions of Windows)... also copied here from https://stackoverflow.com/a/43645062/995048 since this page seems to come up first in search results:
One possible way is to use the Visual Studio tool Spy++.
Give this a try:
- Run the tool (for me, it's at
C:Program Files (x86)Microsoft Visual Studio2017CommunityCommon7Toolsspyxx_amd64.exe
)
- In the menu bar, select Spy -> Log messages... (or hit Ctrl + M)
- Check All Windows in System in the Additional Windows frame
- Switch to the Messages tab
- Click the Clear All button
- Select
WM_HOTKEY
in the listbox, or check Keyboard in Message Groups (if you're OK with more potential noise)
- Click the OK button
- Press the hotkey in question (Win + R, for example)
- Select the
WM_HOTKEY
line in the Messages (All Windows) window, right click, and select Properties... in the context menu
- In the Message Properties dialog, click the Window Handle link (this will be the handle for the window that received the message)
- Click the Synchronize button on the Window Properties dialog. This will show the window in the main Spy++ window treeview.
- On the Window Properties dialog, select the Process tab
- Click the Process ID link. This will show you the process (In my Win + R case:
EXPLORER
)
This works for me in Win10 (and probably all other even vaguely-recent versions of Windows)... also copied here from https://stackoverflow.com/a/43645062/995048 since this page seems to come up first in search results:
One possible way is to use the Visual Studio tool Spy++.
Give this a try:
- Run the tool (for me, it's at
C:Program Files (x86)Microsoft Visual Studio2017CommunityCommon7Toolsspyxx_amd64.exe
)
- In the menu bar, select Spy -> Log messages... (or hit Ctrl + M)
- Check All Windows in System in the Additional Windows frame
- Switch to the Messages tab
- Click the Clear All button
- Select
WM_HOTKEY
in the listbox, or check Keyboard in Message Groups (if you're OK with more potential noise)
- Click the OK button
- Press the hotkey in question (Win + R, for example)
- Select the
WM_HOTKEY
line in the Messages (All Windows) window, right click, and select Properties... in the context menu
- In the Message Properties dialog, click the Window Handle link (this will be the handle for the window that received the message)
- Click the Synchronize button on the Window Properties dialog. This will show the window in the main Spy++ window treeview.
- On the Window Properties dialog, select the Process tab
- Click the Process ID link. This will show you the process (In my Win + R case:
EXPLORER
)
edited Jan 14 at 12:10
mopsled
28116
28116
answered Apr 27 '17 at 17:38
user995048user995048
50732
50732
3
This is a great answer, it is a lot of steps but gives perfectly detailed information. Note that you will need to install SPY++ somehow and that you need to run the 64bit version on a 64bit PC or it won't work. I think the 'easiest' way to install SPY++ is to install Visual Studio 2017, be sure to select the C++ payload. For non developers this might be a bit too much work.
– Roy T.
May 12 '17 at 8:27
2
This is perfect. Elaborate, but perfect!
– angularsen
May 24 '17 at 21:04
13
Great answer! Just a note that the 64-bit version of Spy++ catches only messages for 64-bit applications, so if you don't see theWM_HOTKEY
message in the Message log after pressing the hotkey, you may need to run the 32-bit version of Spy++.
– Dawid Ferenczy
Jul 17 '17 at 14:54
Link should be updated to new documentation site. For Visual Studio 2017, the only required payload is "Visual C++ core desktop features". Application specific hotkey is not logged? For example, Ctrl + B in MS Word will make the text bold.
– Franklin Yu
Aug 3 '18 at 21:40
Thank you so much for this. I FINALLY found out what was stealing Ctrl Shift F from me. (It was Razer Cortex). Another note is that sometimes spy++ will crash when you try to view the properties. (And then you cannot see any more hooks until rebooting.) I was able to resolve this by right clicking, before step 9, and choosing "Stop Logging Message". At that point, it no longer crashed when I attempted to examine the properties. Thanks again!
– Khale_Kitha
Sep 21 '18 at 13:20
|
show 1 more comment
3
This is a great answer, it is a lot of steps but gives perfectly detailed information. Note that you will need to install SPY++ somehow and that you need to run the 64bit version on a 64bit PC or it won't work. I think the 'easiest' way to install SPY++ is to install Visual Studio 2017, be sure to select the C++ payload. For non developers this might be a bit too much work.
– Roy T.
May 12 '17 at 8:27
2
This is perfect. Elaborate, but perfect!
– angularsen
May 24 '17 at 21:04
13
Great answer! Just a note that the 64-bit version of Spy++ catches only messages for 64-bit applications, so if you don't see theWM_HOTKEY
message in the Message log after pressing the hotkey, you may need to run the 32-bit version of Spy++.
– Dawid Ferenczy
Jul 17 '17 at 14:54
Link should be updated to new documentation site. For Visual Studio 2017, the only required payload is "Visual C++ core desktop features". Application specific hotkey is not logged? For example, Ctrl + B in MS Word will make the text bold.
– Franklin Yu
Aug 3 '18 at 21:40
Thank you so much for this. I FINALLY found out what was stealing Ctrl Shift F from me. (It was Razer Cortex). Another note is that sometimes spy++ will crash when you try to view the properties. (And then you cannot see any more hooks until rebooting.) I was able to resolve this by right clicking, before step 9, and choosing "Stop Logging Message". At that point, it no longer crashed when I attempted to examine the properties. Thanks again!
– Khale_Kitha
Sep 21 '18 at 13:20
3
3
This is a great answer, it is a lot of steps but gives perfectly detailed information. Note that you will need to install SPY++ somehow and that you need to run the 64bit version on a 64bit PC or it won't work. I think the 'easiest' way to install SPY++ is to install Visual Studio 2017, be sure to select the C++ payload. For non developers this might be a bit too much work.
– Roy T.
May 12 '17 at 8:27
This is a great answer, it is a lot of steps but gives perfectly detailed information. Note that you will need to install SPY++ somehow and that you need to run the 64bit version on a 64bit PC or it won't work. I think the 'easiest' way to install SPY++ is to install Visual Studio 2017, be sure to select the C++ payload. For non developers this might be a bit too much work.
– Roy T.
May 12 '17 at 8:27
2
2
This is perfect. Elaborate, but perfect!
– angularsen
May 24 '17 at 21:04
This is perfect. Elaborate, but perfect!
– angularsen
May 24 '17 at 21:04
13
13
Great answer! Just a note that the 64-bit version of Spy++ catches only messages for 64-bit applications, so if you don't see the
WM_HOTKEY
message in the Message log after pressing the hotkey, you may need to run the 32-bit version of Spy++.– Dawid Ferenczy
Jul 17 '17 at 14:54
Great answer! Just a note that the 64-bit version of Spy++ catches only messages for 64-bit applications, so if you don't see the
WM_HOTKEY
message in the Message log after pressing the hotkey, you may need to run the 32-bit version of Spy++.– Dawid Ferenczy
Jul 17 '17 at 14:54
Link should be updated to new documentation site. For Visual Studio 2017, the only required payload is "Visual C++ core desktop features". Application specific hotkey is not logged? For example, Ctrl + B in MS Word will make the text bold.
– Franklin Yu
Aug 3 '18 at 21:40
Link should be updated to new documentation site. For Visual Studio 2017, the only required payload is "Visual C++ core desktop features". Application specific hotkey is not logged? For example, Ctrl + B in MS Word will make the text bold.
– Franklin Yu
Aug 3 '18 at 21:40
Thank you so much for this. I FINALLY found out what was stealing Ctrl Shift F from me. (It was Razer Cortex). Another note is that sometimes spy++ will crash when you try to view the properties. (And then you cannot see any more hooks until rebooting.) I was able to resolve this by right clicking, before step 9, and choosing "Stop Logging Message". At that point, it no longer crashed when I attempted to examine the properties. Thanks again!
– Khale_Kitha
Sep 21 '18 at 13:20
Thank you so much for this. I FINALLY found out what was stealing Ctrl Shift F from me. (It was Razer Cortex). Another note is that sometimes spy++ will crash when you try to view the properties. (And then you cannot see any more hooks until rebooting.) I was able to resolve this by right clicking, before step 9, and choosing "Stop Logging Message". At that point, it no longer crashed when I attempted to examine the properties. Thanks again!
– Khale_Kitha
Sep 21 '18 at 13:20
|
show 1 more comment
This has probably been answered on Stack Overflow in this thread:
Find out what process registered a global hotkey? (Windows API)
Here's Pauk's answer:
Your question piqued my interest, so I've done a bit of digging and
while, unfortunately I don't have a proper answer for you, I thought
I'd share what I have.
I found this example of creating keyboard hook (in Delphi)
written in 1998, but is compilable in Delphi 2007 with a couple of
tweaks.
It's a DLL with a call to
SetWindowsHookEx
that passes through a
callback function, which can then intercept key strokes: In this case,
it's tinkering with them for fun, changing left cursor to right, etc.
A simple app then calls the DLL and reports back its results based on
a TTimer event. If you're interested I can post the Delphi 2007 based
code.
It's well documented and commented and you potentially could use it as
a basis of working out where a key press is going. If you could get
the handle of the application that sent the key strokes, you could
track it back that way. With that handle you'd be able to get the
information you need quite easily.
Other apps have tried determining hotkeys by going through their
Shortcuts since they can contain a Shortcut key, which is just another
term for hotkey. However most applications don't tend to set this
property so it might not return much. If you are interested in that
route, Delphi has access toIShellLink
COM interface which you could
use to load a shortcut up from and get its hotkey:
uses ShlObj, ComObj, ShellAPI, ActiveX, CommCtrl;
procedure GetShellLinkHotKey;
var
LinkFile : WideString;
SL: IShellLink;
PF: IPersistFile;
HotKey : Word;
HotKeyMod: Byte;
HotKeyText : string;
begin
LinkFile := 'C:TempTemp.lnk';
OleCheck(CoCreateInstance(CLSID_ShellLink, nil, CLSCTX_INPROC_SERVER, IShellLink, SL));
// The IShellLink implementer must also support the IPersistFile
// interface. Get an interface pointer to it.
PF := SL as IPersistFile;
// Load file into IPersistFile object
OleCheck(PF.Load(PWideChar(LinkFile), STGM_READ));
// Resolve the link by calling the Resolve interface function.
OleCheck(SL.Resolve(0, SLR_ANY_MATCH or SLR_NO_UI));
// Get hotkey info
OleCheck(SL.GetHotKey(HotKey));
// Extract the HotKey and Modifier properties.
HotKeyText := '';
HotKeyMod := Hi(HotKey);
if (HotKeyMod and HOTKEYF_ALT) = HOTKEYF_ALT then
HotKeyText := 'ALT+';
if (HotKeyMod and HOTKEYF_CONTROL) = HOTKEYF_CONTROL then
HotKeyText := HotKeyText + 'CTRL+';
if (HotKeyMod and HOTKEYF_SHIFT) = HOTKEYF_SHIFT then
HotKeyText := HotKeyText + 'SHIFT+';
if (HotKeyMod and HOTKEYF_EXT) = HOTKEYF_EXT then
HotKeyText := HotKeyText + 'Extended+';
HotKeyText := HotKeyText + Char(Lo(HotKey));
if (HotKeyText = '') or (HotKeyText = #0) then
HotKeyText := 'None';
ShowMessage('Shortcut Key - ' + HotKeyText);
end;
If you've got access to Safari Books Online, there is a good
section about working with shortcuts / shell links in the Borland
Delphi 6 Developer's Guide by Steve Teixeira and Xavier Pacheco. My
example above is a butchered version from there and this site.
Hope that helps!
add a comment |
This has probably been answered on Stack Overflow in this thread:
Find out what process registered a global hotkey? (Windows API)
Here's Pauk's answer:
Your question piqued my interest, so I've done a bit of digging and
while, unfortunately I don't have a proper answer for you, I thought
I'd share what I have.
I found this example of creating keyboard hook (in Delphi)
written in 1998, but is compilable in Delphi 2007 with a couple of
tweaks.
It's a DLL with a call to
SetWindowsHookEx
that passes through a
callback function, which can then intercept key strokes: In this case,
it's tinkering with them for fun, changing left cursor to right, etc.
A simple app then calls the DLL and reports back its results based on
a TTimer event. If you're interested I can post the Delphi 2007 based
code.
It's well documented and commented and you potentially could use it as
a basis of working out where a key press is going. If you could get
the handle of the application that sent the key strokes, you could
track it back that way. With that handle you'd be able to get the
information you need quite easily.
Other apps have tried determining hotkeys by going through their
Shortcuts since they can contain a Shortcut key, which is just another
term for hotkey. However most applications don't tend to set this
property so it might not return much. If you are interested in that
route, Delphi has access toIShellLink
COM interface which you could
use to load a shortcut up from and get its hotkey:
uses ShlObj, ComObj, ShellAPI, ActiveX, CommCtrl;
procedure GetShellLinkHotKey;
var
LinkFile : WideString;
SL: IShellLink;
PF: IPersistFile;
HotKey : Word;
HotKeyMod: Byte;
HotKeyText : string;
begin
LinkFile := 'C:TempTemp.lnk';
OleCheck(CoCreateInstance(CLSID_ShellLink, nil, CLSCTX_INPROC_SERVER, IShellLink, SL));
// The IShellLink implementer must also support the IPersistFile
// interface. Get an interface pointer to it.
PF := SL as IPersistFile;
// Load file into IPersistFile object
OleCheck(PF.Load(PWideChar(LinkFile), STGM_READ));
// Resolve the link by calling the Resolve interface function.
OleCheck(SL.Resolve(0, SLR_ANY_MATCH or SLR_NO_UI));
// Get hotkey info
OleCheck(SL.GetHotKey(HotKey));
// Extract the HotKey and Modifier properties.
HotKeyText := '';
HotKeyMod := Hi(HotKey);
if (HotKeyMod and HOTKEYF_ALT) = HOTKEYF_ALT then
HotKeyText := 'ALT+';
if (HotKeyMod and HOTKEYF_CONTROL) = HOTKEYF_CONTROL then
HotKeyText := HotKeyText + 'CTRL+';
if (HotKeyMod and HOTKEYF_SHIFT) = HOTKEYF_SHIFT then
HotKeyText := HotKeyText + 'SHIFT+';
if (HotKeyMod and HOTKEYF_EXT) = HOTKEYF_EXT then
HotKeyText := HotKeyText + 'Extended+';
HotKeyText := HotKeyText + Char(Lo(HotKey));
if (HotKeyText = '') or (HotKeyText = #0) then
HotKeyText := 'None';
ShowMessage('Shortcut Key - ' + HotKeyText);
end;
If you've got access to Safari Books Online, there is a good
section about working with shortcuts / shell links in the Borland
Delphi 6 Developer's Guide by Steve Teixeira and Xavier Pacheco. My
example above is a butchered version from there and this site.
Hope that helps!
add a comment |
This has probably been answered on Stack Overflow in this thread:
Find out what process registered a global hotkey? (Windows API)
Here's Pauk's answer:
Your question piqued my interest, so I've done a bit of digging and
while, unfortunately I don't have a proper answer for you, I thought
I'd share what I have.
I found this example of creating keyboard hook (in Delphi)
written in 1998, but is compilable in Delphi 2007 with a couple of
tweaks.
It's a DLL with a call to
SetWindowsHookEx
that passes through a
callback function, which can then intercept key strokes: In this case,
it's tinkering with them for fun, changing left cursor to right, etc.
A simple app then calls the DLL and reports back its results based on
a TTimer event. If you're interested I can post the Delphi 2007 based
code.
It's well documented and commented and you potentially could use it as
a basis of working out where a key press is going. If you could get
the handle of the application that sent the key strokes, you could
track it back that way. With that handle you'd be able to get the
information you need quite easily.
Other apps have tried determining hotkeys by going through their
Shortcuts since they can contain a Shortcut key, which is just another
term for hotkey. However most applications don't tend to set this
property so it might not return much. If you are interested in that
route, Delphi has access toIShellLink
COM interface which you could
use to load a shortcut up from and get its hotkey:
uses ShlObj, ComObj, ShellAPI, ActiveX, CommCtrl;
procedure GetShellLinkHotKey;
var
LinkFile : WideString;
SL: IShellLink;
PF: IPersistFile;
HotKey : Word;
HotKeyMod: Byte;
HotKeyText : string;
begin
LinkFile := 'C:TempTemp.lnk';
OleCheck(CoCreateInstance(CLSID_ShellLink, nil, CLSCTX_INPROC_SERVER, IShellLink, SL));
// The IShellLink implementer must also support the IPersistFile
// interface. Get an interface pointer to it.
PF := SL as IPersistFile;
// Load file into IPersistFile object
OleCheck(PF.Load(PWideChar(LinkFile), STGM_READ));
// Resolve the link by calling the Resolve interface function.
OleCheck(SL.Resolve(0, SLR_ANY_MATCH or SLR_NO_UI));
// Get hotkey info
OleCheck(SL.GetHotKey(HotKey));
// Extract the HotKey and Modifier properties.
HotKeyText := '';
HotKeyMod := Hi(HotKey);
if (HotKeyMod and HOTKEYF_ALT) = HOTKEYF_ALT then
HotKeyText := 'ALT+';
if (HotKeyMod and HOTKEYF_CONTROL) = HOTKEYF_CONTROL then
HotKeyText := HotKeyText + 'CTRL+';
if (HotKeyMod and HOTKEYF_SHIFT) = HOTKEYF_SHIFT then
HotKeyText := HotKeyText + 'SHIFT+';
if (HotKeyMod and HOTKEYF_EXT) = HOTKEYF_EXT then
HotKeyText := HotKeyText + 'Extended+';
HotKeyText := HotKeyText + Char(Lo(HotKey));
if (HotKeyText = '') or (HotKeyText = #0) then
HotKeyText := 'None';
ShowMessage('Shortcut Key - ' + HotKeyText);
end;
If you've got access to Safari Books Online, there is a good
section about working with shortcuts / shell links in the Borland
Delphi 6 Developer's Guide by Steve Teixeira and Xavier Pacheco. My
example above is a butchered version from there and this site.
Hope that helps!
This has probably been answered on Stack Overflow in this thread:
Find out what process registered a global hotkey? (Windows API)
Here's Pauk's answer:
Your question piqued my interest, so I've done a bit of digging and
while, unfortunately I don't have a proper answer for you, I thought
I'd share what I have.
I found this example of creating keyboard hook (in Delphi)
written in 1998, but is compilable in Delphi 2007 with a couple of
tweaks.
It's a DLL with a call to
SetWindowsHookEx
that passes through a
callback function, which can then intercept key strokes: In this case,
it's tinkering with them for fun, changing left cursor to right, etc.
A simple app then calls the DLL and reports back its results based on
a TTimer event. If you're interested I can post the Delphi 2007 based
code.
It's well documented and commented and you potentially could use it as
a basis of working out where a key press is going. If you could get
the handle of the application that sent the key strokes, you could
track it back that way. With that handle you'd be able to get the
information you need quite easily.
Other apps have tried determining hotkeys by going through their
Shortcuts since they can contain a Shortcut key, which is just another
term for hotkey. However most applications don't tend to set this
property so it might not return much. If you are interested in that
route, Delphi has access toIShellLink
COM interface which you could
use to load a shortcut up from and get its hotkey:
uses ShlObj, ComObj, ShellAPI, ActiveX, CommCtrl;
procedure GetShellLinkHotKey;
var
LinkFile : WideString;
SL: IShellLink;
PF: IPersistFile;
HotKey : Word;
HotKeyMod: Byte;
HotKeyText : string;
begin
LinkFile := 'C:TempTemp.lnk';
OleCheck(CoCreateInstance(CLSID_ShellLink, nil, CLSCTX_INPROC_SERVER, IShellLink, SL));
// The IShellLink implementer must also support the IPersistFile
// interface. Get an interface pointer to it.
PF := SL as IPersistFile;
// Load file into IPersistFile object
OleCheck(PF.Load(PWideChar(LinkFile), STGM_READ));
// Resolve the link by calling the Resolve interface function.
OleCheck(SL.Resolve(0, SLR_ANY_MATCH or SLR_NO_UI));
// Get hotkey info
OleCheck(SL.GetHotKey(HotKey));
// Extract the HotKey and Modifier properties.
HotKeyText := '';
HotKeyMod := Hi(HotKey);
if (HotKeyMod and HOTKEYF_ALT) = HOTKEYF_ALT then
HotKeyText := 'ALT+';
if (HotKeyMod and HOTKEYF_CONTROL) = HOTKEYF_CONTROL then
HotKeyText := HotKeyText + 'CTRL+';
if (HotKeyMod and HOTKEYF_SHIFT) = HOTKEYF_SHIFT then
HotKeyText := HotKeyText + 'SHIFT+';
if (HotKeyMod and HOTKEYF_EXT) = HOTKEYF_EXT then
HotKeyText := HotKeyText + 'Extended+';
HotKeyText := HotKeyText + Char(Lo(HotKey));
if (HotKeyText = '') or (HotKeyText = #0) then
HotKeyText := 'None';
ShowMessage('Shortcut Key - ' + HotKeyText);
end;
If you've got access to Safari Books Online, there is a good
section about working with shortcuts / shell links in the Borland
Delphi 6 Developer's Guide by Steve Teixeira and Xavier Pacheco. My
example above is a butchered version from there and this site.
Hope that helps!
edited May 23 '17 at 12:41
Community♦
1
1
answered Jul 23 '09 at 9:54
Ivo Flipse♦Ivo Flipse
21.8k2795145
21.8k2795145
add a comment |
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f11308%2fhow-can-i-determine-which-process-owns-a-hotkey-in-windows%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
which version of windows?
– Ivo Flipse♦
Jul 23 '09 at 9:52