How can I determine which process owns a hotkey in Windows?What other tool is using my hotkey?Delete Global...

What is the purpose of easy combat scenarios that don't need resource expenditure?

Why avoid shared user accounts?

Cat is tipping over bed-side lamps during the night

Workflow Comment popup does not show up

When can a QA tester start his job?

Eww, those bytes are gross

False written accusations not made public - is there law to cover this?

Non-Cancer terminal illness that can affect young (age 10-13) girls?

Has any human ever had the choice to leave Earth permanently?

Am I a Rude Number?

Is using an 'empty' metaphor considered bad style?

Alien invasion to probe us, why?

Absorbing damage with Planeswalker

How can I remove (non-trivial) duplicates from a VCF file?

Is it possible to grant users sftp access without shell access? If yes, how is it implemented?

What is a good reason for every spaceship to carry a weapon on board?

A starship is travelling at 0.9c and collides with a small rock. Will it leave a clean hole through, or will more happen?

What is the difference between rolling more dice versus fewer dice?

Why am I able to open Wireshark in macOS X without root privileges?

Potential client has a problematic employee I can't work with

Why did Democrats in the Senate oppose the Born-Alive Abortion Survivors Protection Act (2019 S.130)?

What sets the resolution of an analog resistive sensor?

Dilemma of explaining to interviewer that he is the reason for declining second interview

Square Root Distance from Integers



How can I determine which process owns a hotkey in Windows?


What other tool is using my hotkey?Delete Global HotkeyHow to find which program captures global keyboard shortcut?Windows 7 (64-bit) remove global hotkey created by unknown applicationPrint Screen key stopped workingHot key detection on Windows 7Alt-X ignored on laptop keyboard in Windows 8.1, but normal with external keyboardFinding out with process binds a hotkeyHow to list the current key binding in Windows 7?How can I know what keyboard combination shortcuts are currently set in my computer ?How to find which program captures global keyboard shortcut?Disable Windows + Space hotkey in Windows 8How can I disable the Ctrl+Alt+T hotkey owned by explorer.exe?How do you find if you have duplicated a hotkey in Notepad++?Find out what program is using a hotkeyHow can I determine which process owns a hotkey in Ubuntu?Remove unwanted app hotkey in windowsHow to determine which process owns a toplevel window?How can I disable Alt+Space native hotkey in Windows 10?How to set a hotkey for minimizing a window that's snapped to the side













87















Given a hotkey, how can I find which program owns it?










share|improve this question




















  • 1





    which version of windows?

    – Ivo Flipse
    Jul 23 '09 at 9:52
















87















Given a hotkey, how can I find which program owns it?










share|improve this question




















  • 1





    which version of windows?

    – Ivo Flipse
    Jul 23 '09 at 9:52














87












87








87


31






Given a hotkey, how can I find which program owns it?










share|improve this question
















Given a hotkey, how can I find which program owns it?







windows keyboard-shortcuts






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 24 '16 at 23:05









Ben N

29.7k1398145




29.7k1398145










asked Jul 23 '09 at 9:49









aldrinlealaldrinleal

538156




538156








  • 1





    which version of windows?

    – Ivo Flipse
    Jul 23 '09 at 9:52














  • 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










3 Answers
3






active

oldest

votes


















44














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).






share|improve this answer





















  • 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



















40














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:




  1. Run the tool (for me, it's at C:Program Files (x86)Microsoft Visual Studio2017CommunityCommon7Toolsspyxx_amd64.exe, or use spyxx.exe to monitor 32-bit processes)

  2. In the menu bar, select Spy -> Log messages... (or hit Ctrl + M)

  3. Check All Windows in System in the Additional Windows frame

  4. Switch to the Messages tab

  5. Click the Clear All button

  6. Select WM_HOTKEY in the listbox, or check Keyboard in Message Groups (if you're OK with more potential noise)

  7. Click the OK button

  8. Press the hotkey in question (Win + R, for example)

  9. Select the WM_HOTKEY line in the Messages (All Windows) window, right click, and select Properties... in the context menu

  10. In the Message Properties dialog, click the Window Handle link (this will be the handle for the window that received the message)

  11. Click the Synchronize button on the Window Properties dialog. This will show the window in the main Spy++ window treeview.

  12. On the Window Properties dialog, select the Process tab

  13. Click the Process ID link. This will show you the process (In my Win + R case: EXPLORER)







share|improve this answer





















  • 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






  • 14





    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













  • 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



















5














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 to IShellLink 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!







share|improve this answer

























    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
    });


    }
    });














    draft saved

    draft discarded


















    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









    44














    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).






    share|improve this answer





















    • 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
















    44














    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).






    share|improve this answer





















    • 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














    44












    44








    44







    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).






    share|improve this answer















    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).







    share|improve this answer














    share|improve this answer



    share|improve this answer








    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














    • 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













    40














    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:




    1. Run the tool (for me, it's at C:Program Files (x86)Microsoft Visual Studio2017CommunityCommon7Toolsspyxx_amd64.exe, or use spyxx.exe to monitor 32-bit processes)

    2. In the menu bar, select Spy -> Log messages... (or hit Ctrl + M)

    3. Check All Windows in System in the Additional Windows frame

    4. Switch to the Messages tab

    5. Click the Clear All button

    6. Select WM_HOTKEY in the listbox, or check Keyboard in Message Groups (if you're OK with more potential noise)

    7. Click the OK button

    8. Press the hotkey in question (Win + R, for example)

    9. Select the WM_HOTKEY line in the Messages (All Windows) window, right click, and select Properties... in the context menu

    10. In the Message Properties dialog, click the Window Handle link (this will be the handle for the window that received the message)

    11. Click the Synchronize button on the Window Properties dialog. This will show the window in the main Spy++ window treeview.

    12. On the Window Properties dialog, select the Process tab

    13. Click the Process ID link. This will show you the process (In my Win + R case: EXPLORER)







    share|improve this answer





















    • 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






    • 14





      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













    • 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
















    40














    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:




    1. Run the tool (for me, it's at C:Program Files (x86)Microsoft Visual Studio2017CommunityCommon7Toolsspyxx_amd64.exe, or use spyxx.exe to monitor 32-bit processes)

    2. In the menu bar, select Spy -> Log messages... (or hit Ctrl + M)

    3. Check All Windows in System in the Additional Windows frame

    4. Switch to the Messages tab

    5. Click the Clear All button

    6. Select WM_HOTKEY in the listbox, or check Keyboard in Message Groups (if you're OK with more potential noise)

    7. Click the OK button

    8. Press the hotkey in question (Win + R, for example)

    9. Select the WM_HOTKEY line in the Messages (All Windows) window, right click, and select Properties... in the context menu

    10. In the Message Properties dialog, click the Window Handle link (this will be the handle for the window that received the message)

    11. Click the Synchronize button on the Window Properties dialog. This will show the window in the main Spy++ window treeview.

    12. On the Window Properties dialog, select the Process tab

    13. Click the Process ID link. This will show you the process (In my Win + R case: EXPLORER)







    share|improve this answer





















    • 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






    • 14





      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













    • 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














    40












    40








    40







    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:




    1. Run the tool (for me, it's at C:Program Files (x86)Microsoft Visual Studio2017CommunityCommon7Toolsspyxx_amd64.exe, or use spyxx.exe to monitor 32-bit processes)

    2. In the menu bar, select Spy -> Log messages... (or hit Ctrl + M)

    3. Check All Windows in System in the Additional Windows frame

    4. Switch to the Messages tab

    5. Click the Clear All button

    6. Select WM_HOTKEY in the listbox, or check Keyboard in Message Groups (if you're OK with more potential noise)

    7. Click the OK button

    8. Press the hotkey in question (Win + R, for example)

    9. Select the WM_HOTKEY line in the Messages (All Windows) window, right click, and select Properties... in the context menu

    10. In the Message Properties dialog, click the Window Handle link (this will be the handle for the window that received the message)

    11. Click the Synchronize button on the Window Properties dialog. This will show the window in the main Spy++ window treeview.

    12. On the Window Properties dialog, select the Process tab

    13. Click the Process ID link. This will show you the process (In my Win + R case: EXPLORER)







    share|improve this answer















    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:




    1. Run the tool (for me, it's at C:Program Files (x86)Microsoft Visual Studio2017CommunityCommon7Toolsspyxx_amd64.exe, or use spyxx.exe to monitor 32-bit processes)

    2. In the menu bar, select Spy -> Log messages... (or hit Ctrl + M)

    3. Check All Windows in System in the Additional Windows frame

    4. Switch to the Messages tab

    5. Click the Clear All button

    6. Select WM_HOTKEY in the listbox, or check Keyboard in Message Groups (if you're OK with more potential noise)

    7. Click the OK button

    8. Press the hotkey in question (Win + R, for example)

    9. Select the WM_HOTKEY line in the Messages (All Windows) window, right click, and select Properties... in the context menu

    10. In the Message Properties dialog, click the Window Handle link (this will be the handle for the window that received the message)

    11. Click the Synchronize button on the Window Properties dialog. This will show the window in the main Spy++ window treeview.

    12. On the Window Properties dialog, select the Process tab

    13. Click the Process ID link. This will show you the process (In my Win + R case: EXPLORER)








    share|improve this answer














    share|improve this answer



    share|improve this answer








    edited 27 mins ago









    Vimes

    3431311




    3431311










    answered Apr 27 '17 at 17:38









    user995048user995048

    51732




    51732








    • 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






    • 14





      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













    • 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





      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






    • 14





      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













    • 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




    14




    14





    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











    5














    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 to IShellLink 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!







    share|improve this answer






























      5














      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 to IShellLink 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!







      share|improve this answer




























        5












        5








        5







        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 to IShellLink 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!







        share|improve this answer















        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 to IShellLink 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!








        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited May 23 '17 at 12:41









        Community

        1




        1










        answered Jul 23 '09 at 9:54









        Ivo FlipseIvo Flipse

        21.8k2795145




        21.8k2795145






























            draft saved

            draft discarded




















































            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.




            draft saved


            draft discarded














            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





















































            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







            Popular posts from this blog

            VNC viewer RFB protocol error: bad desktop size 0x0I Cannot Type the Key 'd' (lowercase) in VNC Viewer...

            Tribunal Administrativo e Fiscal de Mirandela Referências Menu de...

            looking for continuous Screen Capture for retroactivly reproducing errors, timeback machineRolling desktop...