Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

If I send IOCTL_INTERNAL_USB_CYCLE_PORT I/O request to the USB device, it works as unplug and replug. but if I safely removed it from the system tray, then send the same request, I get 0xC000000E error code, which is STATUS_NO_SUCH_DEVICE, and the device won't reappear. Is there a way to simulate a replug of this USB device in a "safely removed but physically connected" state?


From Microsoft's USB Reference:

The IOCTL_INTERNAL_USB_CYCLE_PORT I/O request simulates a device unplug and replug on the port associated with the PDO.

share|improve this question

1 Answer

up vote 1 down vote accepted

You should send IOCTL this to the parent of the device - not to the device itself.

share|improve this answer
i will try it. thanx for the answer. – Dyno Hongjun Fu Apr 27 '11 at 6:09
it does work. thanx. – Dyno Hongjun Fu Jun 28 '11 at 6:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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