user37875
user37875

Reputation: 14194

windows: load a filter driver while windows is running

Is it possible to install a keyboard filter driver(like ctrl2cap) while windows is running and not having to reboot? I tried it once with a driver loader but I got a BSOD. If it is possible what was I doing wrong? What can I do next time to not get a BSOD? Also, if it is possible, could I do it with c++? Thanks for the help!

Upvotes: 3

Views: 784

Answers (1)

steve
steve

Reputation: 6020

The simple answer is you cannot dynamically load a filter driver. You need to specify a load order when you install the filter driver. I assume the filter driver is layered on top of kbdclass. As kbdclass is already loaded this is not possible.

Upvotes: 2

Related Questions