How to programatically unplug & replug an arbitrary USB device? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T10:13:21Z http://stackoverflow.com/feeds/question/138394 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/138394/how-to-programatically-unplug-replug-an-arbitrary-usb-device 5 How to programatically unplug & replug an arbitrary USB device? Dean 2008-09-26T09:07:16Z 2009-06-15T14:41:02Z <p>I'm trying to fix a non-responsive USB device that's masquerading as a virtual com port. Manual replugging works, but there may be up to 12 of these units. Is there an API command to do the programatic equivalent of the unplug/replug cycle?</p> http://stackoverflow.com/questions/138394/how-to-programatically-unplug-replug-an-arbitrary-usb-device/138405#138405 1 Answer by Greg Hewgill for How to programatically unplug & replug an arbitrary USB device? Greg Hewgill 2008-09-26T09:09:39Z 2008-09-26T09:09:39Z <p>Unfortunately, there isn't one that I know of. Physically unplugging the USB connection does specific electronic things with pullup resistors, such that the device knows it's unplugged. I haven't encountered a host that attempts to be able to simulate this condition without physical unplugging.</p> http://stackoverflow.com/questions/138394/how-to-programatically-unplug-replug-an-arbitrary-usb-device/138417#138417 0 Answer by robsoft for How to programatically unplug & replug an arbitrary USB device? robsoft 2008-09-26T09:12:42Z 2008-09-26T09:12:42Z <p>If you have more than one of these on any particular host machine, you might save some time/frustration by plugging them into their own dedicated USB hub out from the machine - at least it's only one cable to unplug/plug to restart a couple of devices at a time.</p> <p>You've probably thought of that, of course. :-)</p> http://stackoverflow.com/questions/138394/how-to-programatically-unplug-replug-an-arbitrary-usb-device/138418#138418 0 Answer by jop for How to programatically unplug & replug an arbitrary USB device? jop 2008-09-26T09:12:57Z 2008-09-26T09:12:57Z <p>Programmatically <a href="http://stackoverflow.com/questions/85649/safe-remove-usb-drive-using-win32-api">unmounting a USB drive</a> can be done, however, I don't know if remounting can be done via code.</p> http://stackoverflow.com/questions/138394/how-to-programatically-unplug-replug-an-arbitrary-usb-device/138443#138443 0 Answer by Treb for How to programatically unplug & replug an arbitrary USB device? Treb 2008-09-26T09:21:49Z 2008-09-26T09:21:49Z <p>in <a href="http://www.codeproject.com/KB/system/usbeject.aspx" rel="nofollow">http://www.codeproject.com/KB/system/usbeject.aspx</a> look for this:</p> <blockquote> <p>*CM_Request_Device_Eject* function</p> <p>This is the SetupApi function that ejects a device (any device that can be ejected). It takes a device instance handle (or devInst) as input...</p> </blockquote> http://stackoverflow.com/questions/138394/how-to-programatically-unplug-replug-an-arbitrary-usb-device/138446#138446 3 Answer by Nils Pipenbrinck for How to programatically unplug & replug an arbitrary USB device? Nils Pipenbrinck 2008-09-26T09:22:43Z 2008-09-26T09:22:43Z <p>@Dean,</p> <p>I've asked the same question some days ago and got lots of great answers (including links to source and links to some utilities as well).</p> <p><a href="http://stackoverflow.com/questions/85649/safe-remove-usb-drive-using-win32-api">http://stackoverflow.com/questions/85649/safe-remove-usb-drive-using-win32-api</a></p> http://stackoverflow.com/questions/138394/how-to-programatically-unplug-replug-an-arbitrary-usb-device/138682#138682 1 Answer by Andrew Edgecombe for How to programatically unplug & replug an arbitrary USB device? Andrew Edgecombe 2008-09-26T10:46:19Z 2008-09-26T10:46:19Z <p>As <a href="http://stackoverflow.com/questions/138394/how-to-programatically-unplug-replug-an-arbitrary-usb-device#138405">Greg Hewgill</a> said, I don't think that it's possible.</p> <p>Initiation of the whole usb startup is triggered by the usb slave (in your case your device). The usb host (the pc) can send a message to the device to tell it to shut down, but once it's done that it's up to the device to start back up again. The host can't force it to.</p> <p>To make matters worse you'll quite possibly find that the usb device is detecting the plug being inserted (by detecting the usb voltage on the power lines) to start up. This is particularly true of bus powered devices.</p> <p><hr /></p> <p>It sounds like there are differences from your situation and the case of trying to unmount/remount usb drives. When the usb drive is unmounted there is no reason that it can't stay enumerated on the pc. You're not actually reseting the usb drive, just making it's filesystem inactive.</p> http://stackoverflow.com/questions/138394/how-to-programatically-unplug-replug-an-arbitrary-usb-device/138868#138868 1 Answer by MSalters for How to programatically unplug & replug an arbitrary USB device? MSalters 2008-09-26T11:27:12Z 2008-09-26T11:27:12Z <p>I've looked at this for automated tests. The best solution we came up with seems to be the ability of USB hubs to disconnect devices when they draw too much power. From a USB pserspective, it appears the USB host may instruct a hub to do so. With 12 devices, you will have hubs, so I'd suggest to investigate that path.</p> http://stackoverflow.com/questions/138394/how-to-programatically-unplug-replug-an-arbitrary-usb-device/174385#174385 1 Answer by Ilya for How to programatically unplug & replug an arbitrary USB device? Ilya 2008-10-06T13:57:31Z 2008-10-06T13:57:31Z <p>We used <a href="http://www.electronickits.com/kit/complete/elec/ck1610.htm" rel="nofollow">this</a> to programmable disconnect usb devices.</p> http://stackoverflow.com/questions/138394/how-to-programatically-unplug-replug-an-arbitrary-usb-device/508552#508552 1 Answer by Coderer for How to programatically unplug & replug an arbitrary USB device? Coderer 2009-02-03T19:30:55Z 2009-02-03T19:30:55Z <p>Thought: under Device Manager, you can right-click your computer icon (top of the device tree) and "scan for changes". I'm not 100% sure, but I think if you "eject" a USB device (software "unplug" equivalent), then Scan for Hardware Changes, it will show back up even though it never actually left the port.</p> <p>If I'm right about that, you might be able to use the Microsoft.Win32.Shell class to emulate opening Control Panel --> Administrative Tools --> Device Manager and running the context-menu item. It's worth a shot, anyway.</p> http://stackoverflow.com/questions/138394/how-to-programatically-unplug-replug-an-arbitrary-usb-device/508593#508593 0 Answer by Adam Davis for How to programatically unplug & replug an arbitrary USB device? Adam Davis 2009-02-03T19:41:37Z 2009-02-03T19:41:37Z <p>The device itself may be able to do this (ie, perform a USB disconnect/reconnect sequence).</p> <p>Have you contacted the device manufacturer, or if you are the manufacturer, the EE's that designed it?</p> <p>I had to do this when I designed a USB embedded device - programming could be accomplished through USB, but the device had to be able to disconnect and reconnect at several points to complete the process.</p> <p>Beyond that there's the brute force method of disabling the USB host device in device manager (I assume this can be done in software) and then re-enabling it.</p> <p>If nothing else, Phidget has USB controlled relay boards which you can use to connect power or the USB lines themselves to hubs or individual devices.</p> <p>-Adam</p> http://stackoverflow.com/questions/138394/how-to-programatically-unplug-replug-an-arbitrary-usb-device/706698#706698 0 Answer by DigitalRacer for How to programatically unplug & replug an arbitrary USB device? DigitalRacer 2009-04-01T18:01:57Z 2009-04-01T18:01:57Z <p>What about using Devcon.exe to "remove" and then "rescan"?</p> <p>DR</p> http://stackoverflow.com/questions/138394/how-to-programatically-unplug-replug-an-arbitrary-usb-device/994832#994832 0 Answer by callisto for How to programatically unplug & replug an arbitrary USB device? callisto 2009-06-15T07:15:26Z 2009-06-15T07:15:26Z <p>See <a href="http://stackoverflow.com/questions/916296/how-can-i-cycle-a-usb-device-from-c/919836#919836">how-can-i-cycle-a-usb-device</a></p> <p>to cycle a usb device with code</p> http://stackoverflow.com/questions/138394/how-to-programatically-unplug-replug-an-arbitrary-usb-device/996456#996456 0 Answer by Dolphin for How to programatically unplug & replug an arbitrary USB device? Dolphin 2009-06-15T14:34:50Z 2009-06-15T14:34:50Z <p>I had to do this for my car computer project a while back. The touchscreen drivers didn't like going into hibernate and needed to be replugged when the computer came back from hibernate. The way I ended up solving it was to use Devcon.exe like DigitalRacer suggested. The trick however, was that remove/rescan on the controller didn't work. I had to do the remove/rescan on a HUB upstream from the device (which subsequently disconnected all attached devices). </p>