Disable Ctrl+Alt+Del Combination on windows7

后端 未结 6 685
甜味超标
甜味超标 2020-12-19 07:40

I\'m working on an app (Written in C#) that have a setting to run on KIOSK mode. I\'ve just an challenge here which is disabling Ctrl+Alt+Del

6条回答
  •  醉梦人生
    2020-12-19 08:29

    It is possible to pick up the CTRL+ALT+DEL combination, but not to disable it.
    I tried to disable it with SetWindowsHookEx and WH_KEYBOARD_LL and you can successfully get notified when CTRL+ALT+DEL is pressed, but you cannot do anything about it.

提交回复
热议问题