user37875
user37875

Reputation: 14194

Disabling the keyboard in windows c++?

How can I completely disable the keyboard using c++ in windows? And by completely disable I mean so even Ctrl+Alt+Delete doesn't work. I did consider using a keyboard driver but I think you need to restart the computer after it is installed, but since I only need to disable it for a couple minutes that wouldn't really work.

Upvotes: 3

Views: 10636

Answers (5)

Indy9000
Indy9000

Reputation: 8851

You could install a keyboard hook and filter out the messages, but you might need to have your application as the top most window. Even then Ctrl+Alt+Del would not get filtered out.

Here's SetWindowsHookEx on MSDN

Example of Hooking the Keyboard

Upvotes: 1

Christopher
Christopher

Reputation: 8982

This is not really possible.

WinLogon is designed as the one process that intercepts the Ctrl+Alt+Del key press, even when all other things hang or die. This is the failsafe against malicious sessions, etc. So there is no obvious workaround.

Maybe a keyboard filter driver would make your request possible, but that is a real kernel-driver.

Upvotes: 13

Mike McQuaid
Mike McQuaid

Reputation: 9814

You can't disable Ctrl-Alt-Delete without removing the keyboard or replacing the keyboard driver, it generates a kernel level notification.

Upvotes: 9

selbie
selbie

Reputation: 104484

Ok, here goes several random suggestions. I don't have a definitite answer, but here's where I would start:

1) SetupDiRemoveDevice is probably the API you want to call. Although to call it, you'll need to make a lot of other device enumeration calls. Enumerate your HID and USB devices and find the keyboard. Start by looking for the VID/PID of the actual device for starters.

2) Delete the drivers kdbclass.sys and kbdhid.sys. You'll be fighting Windows system file to do this. I have no idea if this will work, but sounds interesting and simple.

3) Write a USB filter driver. Your driver will need to know (or be passed) the vid/pid of the device to filter on, but it might work.

Upvotes: 0

Kirill V. Lyadvinsky
Kirill V. Lyadvinsky

Reputation: 99555

You could use BlockInput function. But it doesn't block CTRL + ALT + DEL.

Upvotes: 1

Related Questions