Reputation: 304
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).
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
Reputation: 309
You also use Device Manager to view the Device Stack for a given device.
Example of an USB-connected iPhone:
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