Arseniy
Arseniy

Reputation: 304

How to view a device driver stack?

There is a picture on the Microsoft site which represent a USB device driver stack (in other word, the list of all drivers which applys for the device work).

enter image description here

What software shall I use to get this list? Is such soft in the SysInternals? Some people told me that I can get this list via WinDbg or TraceView. Is this true? If yes, how can I do this?

Upvotes: 0

Views: 821

Answers (1)

Fredrik Orderud
Fredrik Orderud

Reputation: 309

You also use Device Manager to view the Device Stack for a given device.

Example of an USB-connected iPhone:
enter image description here

In the above example, you can see three filter drivers (WdDevFlt antimalware filter, WpdUpFltr portable device upper class filter and WudfRd UMDF device reflector) runs on top if the WinUSB function driver. WunUSB again runs on top of the usbccgp USB generic parent driver that provides the PDO.

Upvotes: 0

Related Questions