Discussion:
Unloading NDIS IM Filter driver
(too old to reply)
Mark Smith
2010-08-06 06:29:46 UTC
Permalink
I am using NDIS Intermidiate filter driver in my application.
My application is successfully installing and uninstalling the driver

Can anyone tell me How to unload NDIS IM filter Driver?

Thanks for any guidance.

Mark Smith
***@gmail.com
Maxim S. Shatskih
2010-08-06 06:44:39 UTC
Permalink
Post by Mark Smith
Can anyone tell me How to unload NDIS IM filter Driver?
Via INetCfg API?
--
Maxim S. Shatskih
Windows DDK MVP
***@storagecraft.com
http://www.storagecraft.com
Mark Smith
2010-08-06 10:08:37 UTC
Permalink
On Aug 6, 11:44 am, "Maxim S. Shatskih"
Post by Maxim S. Shatskih
Post by Mark Smith
Can anyone tell me How to unload NDIS IM filter Driver?
Via INetCfg API?
--
Maxim S. Shatskih
Windows DDK MVP
Hello,

INetCfg API provides interface for Installing and Uninstalling
drivers?
I have used these API for the same.
Now i want to Unload my driver.

Mark Smith
***@gmail.com
Maxim S. Shatskih
2010-08-06 14:24:24 UTC
Permalink
Post by Mark Smith
Now i want to Unload my driver.
I don't think you can unload NDIS IM without uninstalling it, or at least unbinding from all adapters below it.

After all, IM is a miniport, and miniports are PnP drivers, so, the PnP unload rules apply - "no devices left for this driver". In this case, "device" is NDIS's internal devnode to represent the binding.
--
Maxim S. Shatskih
Windows DDK MVP
***@storagecraft.com
http://www.storagecraft.com
Anand Choubey
2010-09-03 15:40:22 UTC
Permalink
Use correct 32/64 bit bindview tool (which comes with WDK sample) and
unbind all the IM binding therefore IM will be unloaded.

Loading...