Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Power off an USB device in software on Windows

People also ask

Can you disable USB power?

You can easily disable power to USB ports in your computer through the Windows Device Manager utility.


Some USB hubs have the ability to turn power off to its downstream devices.

"Is it possible to power up ports on a USB hub from Ubuntu?" https://askubuntu.com/questions/149242/is-it-possible-to-power-up-ports-on-a-usb-hub-from-ubuntu Which points to some c source for hub-ctrl.c

See: http://www.gniibe.org/development/ac-power-control-by-USB-hub/index

I tested this on Ubuntu with a Dream-Cheeky USB LED unit, and it did seem to turn the power off - although when turned on again, the device had remembered (!) its LED on/off state ??? - This did not happen when I unplugged and repluged the USB lead to the LED...

It looks like someone has looked at compiling this for Windows, but I could not find the result, sorry.


You could do with a hardware relay and controlling it via software: http://pintant.cat/2012/05/12/power-off-usb-device/ (of course, will use 2 USB ports :-) one for the device, one for the relay).


Since it's for development/test instead of production, I'd recommend having a solid-state_relay as part of a second device and using that to cycle the power on the USB connection.


There is a simple solution to this on Windows if you buy this external USB hub. It has an undocumented feature that cycles power to all connected USB devices whenever the hub is "enabled" in Windows Device Manager. You can do this manually:

  1. Run "Device Manager"
  2. Expand "Universal Serial Bus controllers"
  3. Open Properties for the appropriate "Generic USB Hub"
  4. Select the "Driver" tab
  5. Click the "Disable" button
  6. Click the "Enable" button. The hub will briefly disable power output to all 4 of its USB ports, and then enable it again.

You can also do this programmatically from any Windows application that is running with administrator priveledges. Here is an example in C#.

I have successfully used this technique to cycle power to USB devices that were "locked up". It sure beats physically unplugging devices, especially on remote or unmanned PCs.


Unfortunately, it's not possible on stock PCs.

USB host chipsets do not have the capability to fully power-down. There is some signaling that you can do in USB 2.0 or 3.0 to ask the device to go into a sleep-state, but the port will provide power even when the PC is turned off. (That's so devices like iPods and whatnot can still charge if needed.)