Mapping a USB drive to a USB hub & port in Windows - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T04:15:38Z http://stackoverflow.com/feeds/question/420638 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/420638/mapping-a-usb-drive-to-a-usb-hub-port-in-windows 0 Mapping a USB drive to a USB hub & port in Windows Abdullah Jibaly 2009-01-07T15:05:51Z 2009-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#421301 0 Answer by Ilya for Mapping a USB drive to a USB hub & port in Windows Ilya 2009-01-07T17:56:16Z 2009-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>