Mapping a USB drive to a USB hub & port in Windows - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T04:15:38Zhttp://stackoverflow.com/feeds/question/420638http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/420638/mapping-a-usb-drive-to-a-usb-hub-port-in-windows0Mapping a USB drive to a USB hub & port in WindowsAbdullah Jibaly2009-01-07T15:05:51Z2009-01-07T17:56:16Z
<p>What's the best way of mapping out where all the USB drives are plugged in? Ideally, I'd like to be able to recursively start from the root hub and keep going down the tree finding connect usb drives and what port they are connected to (which physical USB slot).</p>
http://stackoverflow.com/questions/420638/mapping-a-usb-drive-to-a-usb-hub-port-in-windows/421301#4213010Answer by Ilya for Mapping a USB drive to a USB hub & port in WindowsIlya 2009-01-07T17:56:16Z2009-01-07T17:56:16Z<p>In my case this is combination of kernel and user mode code that make life easier, but I'm sure that you can do all this only in user mode using <a href="http://msdn.microsoft.com/en-us/library/ms792954.aspx" rel="nofollow">SetupDiXXX</a> Api's.<br />
I think that <a href="http://msdn.microsoft.com/en-us/library/cc526325.aspx" rel="nofollow">USBView</a> application using different approach.
You can see the example implementation of USBView utility (C#) <a href="http://msdn.microsoft.com/en-us/library/ms792954.aspx" rel="nofollow">here</a><br />
In general google for USBView and you will find a lot of relevant information.</p>