Davide Visconti 5 Posted December 16, 2018 Hi all, I'm searching a way to intercept, in Windows 10, some classic windows shortcuts like the Windows key, Ctrl+alt+canc, Ctrl+esc, Alt+tab, etc... My goal is to limit the user access to my application and let the windows access at some other users with high privilege. Do you know something like that? Thanks. Share this post Link to post
Uwe Raabe 2057 Posted December 16, 2018 Are you looking for Kiosk mode? Configure kiosks and digital signs on Windows desktop editions 1 Share this post Link to post
David Heffernan 2345 Posted December 16, 2018 Whatever the problem is, trying to hijack keypresses handled by the system is not the solution 2 Share this post Link to post
Davide Visconti 5 Posted December 16, 2018 3 hours ago, David Heffernan said: Whatever the problem is, trying to hijack keypresses handled by the system is not the solution @David Heffernan what do you mean? 6 hours ago, Uwe Raabe said: Are you looking for Kiosk mode? Configure kiosks and digital signs on Windows desktop editions @Uwe Raabe I never hear that before! Sound good! I'll try it. Share this post Link to post
Martin Wienold 35 Posted December 17, 2018 (edited) For what it's worth, limiting Keyboard and Mouse input can be done by using low level keyboard and mouse hooks. Beware that debugging these kind of projects can be quite .. interesting as you have your keyboard and mouse hooked and therefore - depending on your application logic - blocked. Basically you have to have a host application and a library. The host application loads the library which implements the hooks you defined. For more information look here: LowLevelKeyboardProc callback function LowLevelMouseProc callback function ⚠️ CTRL+ALT+DEL can't be hooked/blocked, maybe Kiosk mode is realy what you need. Edited December 17, 2018 by Martin Wienold 1 Share this post Link to post
Kryvich 165 Posted December 17, 2018 Using the Group Policy Editor it is possible to prevent users from accessing to Ctrl-Alt-Del options. https://ccm.net/faq/41738-how-to-prevent-users-from-accessing-the-task-manager Share this post Link to post