views:

25

answers:

1

Hi,

I want to develop one driver so i have create one service and one .sys file for driver to be display now i do not know how to attach that two file or how to register my driver to windows. so just tell me the step which i should follow.

Thanks and hoping for positive response.

A: 

Depends on the driver you write. If it's a device driver it's automatically loaded once the system needs it for the previously defined device classes.

For drivers which don't need devices you need a special driver service. See this CodeProject example - section "Dynamically Loading and Unloading the Driver"

Robert