Secondary Categories: 02-Windows Kernel

In order to load and run your custom kernel driver you need to be in Test Signing mode and setup the driver as a service like so:

C:\>sc create MyDriver type= kernel binPath= C:\MyDriver\Driver.sys

To query information about it you can use the following command:

sc query My Driver

Depending on the INF file you may be able to stop the driver when its running like so:

sc stop MyDriver

Another way to load your Kernel Driver when developing it is to use OSR Driver Loader. This does the same thing as sc, but it has a nice GUI.

Resources:

TitleURL
PLACEHOLDER

Also Check Out:

  • PLACE HOLDER