vote up 9 vote down star
5

Anyone knows how to remove a USB drive using the win32 API? I do a lot of work on embedded systems and on one of these I have to copy my programs on a usb-stick an insert it into the target hardware.

Since I mostly work on the console I don't like to use the mouse and click on the small task-bar icon hundret times a day.

I'd love to write a little program to do exactly that so I can put it into my makefiles, but I haven't found any API call that does the same thing.

Any ideas?

flag

7 Answers

vote up 5 vote down check

You can use the CM_Request_Device_Eject() function as well as possibly some other possibilities. Consult the following projects and articles:

DevEject: Straightforward. http://www.withopf.com/tools/deveject/

A useful CodeProject article: http://www.codeproject.com/KB/system/RemoveDriveByLetter.aspx

link|flag
Perfect.. You even linked to an utility to do the job. Thanks a lot. – Nils Pipenbrinck Sep 17 '08 at 17:39
MSDN reference @ msdn.microsoft.com/en-us/library/ms790831.aspx – stephbu Sep 17 '08 at 17:42
vote up 5 vote down

See Microsoft Knowledge Base article Q165721: http://support.microsoft.com/kb/165721 -- includes full C source code

link|flag
vote up 3 vote down

It looks like Sync lets you specify -e to eject removable drives. While not a win32 API, you could probably just call sync -e [drive_letter] from your makefile.

link|flag
vote up 2 vote down

Here is a technet article about removable storage media. Look for DismountNtmsMedia.

link|flag
vote up 1 vote down

This article and sample should do the trick: http://support.microsoft.com/default.aspx?scid=kb;en-us;165721

link|flag
vote up 0 vote down

Pls. change Save->Safe in the title

link|flag
thanks.. I always get these two wrong. – Nils Pipenbrinck Sep 17 '08 at 17:41
vote up 0 vote down

Here's a solution in Delphi, that I've modified and put into a service for use in a very large enterprise. Go to: link text

Look for "scapi (Setup & Config Manager API)", and download it. There will be a demo program called USBView that will get you on your way. If you have Delphi, this also includes a TUSBDeviceTree component that you can use to gather information about a USB device when.

Regards

link|flag

Your Answer

Get an OpenID
or
never shown

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