I'd like to cycle (simulate unplug and re-inserting) a USB device (modem) after a certain event has fired. I found a sample on codeproject:

http://www.codeproject.com/KB/system/usbeject.aspx

That allows me to identify+eject the device via its non-volatile serial, but I need it to recycle, not just eject.

I have read this:

http://www.tech-archive.net/Archive/Development/microsoft.public.development.device.drivers/2005-02/1292.html

I do not understand it.

This has been mentioned in other USB related posts:

http://www.codeproject.com/KB/system/DriveDetector.aspx

It is not relevant to my problem.

link|improve this question

What do you mean by recycle? Do you mean a soft reboot? Or do you mean "move it to the recycle bin"? – Randolpho May 27 '09 at 19:04
reboot, same as removing the device and re-inserting it. – callisto May 28 '09 at 6:20
See my answer to this problem below – callisto Jul 5 '10 at 14:12
feedback

1 Answer

up vote 6 down vote accepted

Got it working by using a commandline tool called devcon, which I then called from code.

Dropped devcon.exe into one of the system paths so it works everywhere.

Devcon: devcon

called: DEVCON Remove usb"MI_01"

then called: DEVCON rescan

code:

 System.Diagnostics.Process proc = new System.Diagnostics.Process();
 proc.StartInfo.FileName = "DEVCON";
 proc.StartInfo.Arguments = "Remove *usb"*MI_01";
 proc.StartInfo.RedirectStandardError = true;
 proc.StartInfo.RedirectStandardOutput = true;
 proc.StartInfo.UseShellExecute = false;
 proc.Start();
link|improve this answer
1  
It would be good if you could add a link to devcon and some example code so other people can learn. – Kinlan May 28 '09 at 19:28
devcon at support.microsoft.com/kb/311272 – callisto May 31 '09 at 15:59
I had a device (touchscreen controller) that I did something similar with, but I actually had to remove/rescan on the HUB for it to work. It may have been a crappy hub, 9and it was definitely a crappy driver) but the remove on the device still left it powered, and removing the hub actually cut the power. – Dolphin Jun 15 '09 at 14:37
I tried devcon, but I always get "access is denied" when using it from the command line. Win 7 pro. Any ideas why? – sipickles Jul 7 '10 at 10:35
On Windows 7 you need to be Administrator to run certain devcon commands. – Bo Skjoett Sep 16 '11 at 17:54
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.