Question

Some software I am developing requires the presence of a USB device (which I interact with as a SerialPort, with a USB-to-UART bridge).

Sometimes, after a computer is being restarted from hibernation, the device is not being detected, and I can no longer write to, or read from, the device through its serial port. Having read/write access to the device is necessary.

I cannot rely on the user to take any action (physical or otherwise), so I need a way to restart the device programmatically.

How should I approach restarting a USB device programatically in Windows XP/Vista/7 using the .NET framework?

Was it helpful?

Solution

You could use the WDK (Windows Driver Kit). Lots of source code examples provided, but expect a steep learning curve.

Devcon is a program developed by MS for demonstration purposes that sometimes works and does what you want. But be aware that it is weird and wild. Anyway, the source code is provided, so if you like to mess with device drivers, you can roll your own "Devcon" code.

From the MS site:

DevCon (Devcon.exe), the Device Console, is a command-line tool that displays detailed information about devices. Using DevCon, you can search for and manipulate devices from the command line. DevCon enables, disables, installs, configures, and removes devices on the local computer and displays detailed information about devices on local and remote computers.

HTH!

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top