Capture Ctrl + Shift + Esc in front of Task Manager

I am using Windows API (SetWindowsHookEx) to capture keyboard events. I would like to pass the Ctrl + Shift + Esc combination to my application for processing, but disable the task manager.

Unfortunately, it looks like the three key combinations never make it to my Keyboard Hook routine; I only get two keys.

I don't want to suppress the task manager globally, just for my application.

Is there a way to do this?

+2


a source to share


1 answer


Only my 2 cents, but I believe this is not possible. This combo is kind of a last resort, and if apps can catch it and then hang it ... I'm pretty sure this event is not delivered in the usual way. And even if the app can catch it ... I'll uninstall it right away due to my experience breaking.



Catch Ctrl-Alt-Insert if you need to provide similar functionality.

0


a source







All Articles