NT driver doesn't support plugin and play.

Does ndis filter belong to NT driver or WDM driver?

link|improve this question

56% accept rate
feedback

1 Answer

NDIS filter drivers are typically "legacy WDM" drivers. They can be started/stopped through SCM (e.g., the StartService API).

However, NDIS will technically permit any driver to be an NDIS filter driver: as long as the driver calls NdisFRegisterFilterDriver with a valid UniqueName, it's a filter.

NDIS filter drivers do not participate in traditional WDM PNP operations (e.g., they do not handle IRPs). However, NDIS has its own PNP model, which allows filters instances to be created, started, stopped, and detached dynamically. (In fact, if the filter is marked as Optional in its INF file, it can be inserted and removed without breaking active TCP connections. You can install a filter driver without even interrupting a background download!)

Don't walk away from this explanation with the wrong idea -- the NDIS filter model is really quite modern, powerful, and flexible. It just doesn't use WDM for PNP.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.