R – How to we detect hotkeys registered by other apps

hookhotkeyskeyboardwinapi

Is it possible to detect all the hotkeys registered by the OS as well as software applications currently running? Any native or managed approach on the Windows platform? I know that the RegisterHotKey function returns false if the hotkey is already registered, but what I am looking for is an approach, method, etc. that will give me a list of registered hotkeys. Looping all possible combinations with RegisterHotKey does not sound like a good idea. Anything more efficient?

Best Answer

This program manages to do that but dont know how, http://diamondcs.com.au/dse/detection/hotkeys.php

The programs like these, scan the handles of all the processes,thereby revealing hot keys of all applications This could be a time consuming process

THis is an open source application that deals with the Nitty Gritty Details of all processes

http://sourceforge.net/projects/processhacker/

Related Topic