vote up 2 vote down star
4

How do you programmatically eject(safely remove) an USB mass storage device in Windows (XP)?

flag

Identified as a duplicate of stackoverflow.com/questions/85649/… – Andrew Edgecombe Oct 15 '08 at 22:35

5 Answers

vote up 1 vote down check

There is an article about it at CodeProject: http://www.codeproject.com/KB/system/usbeject.aspx

Seems to do the trick.

/johan/

link|flag
vote up 2 vote down

Here is a project (with source code) that appears to have figured it out.

link|flag
vote up 2 vote down

In autoit, you have a script which does just that.

It basically comes from this Microsoft article and uses kernel32.dll DeviceIoControl function

Of course, this question appears to be a duplicate of Safe remove USB-Drive using Win32 API?, which gives other solutions

link|flag
Nice. I should try this one. – botismarius Oct 15 '08 at 20:35
Yes, it seems this question was already asked & answered. – botismarius Oct 15 '08 at 20:37
vote up 1 vote down

You could spawn a process and use a command line tool. This would also work from other languages such as java where calling the Win32 api is harder.

link|flag
Not quite what I was looking for, but thanks anyway :). Maybe their's license do not forbids disassembly their code... – botismarius Oct 15 '08 at 20:23
vote up 0 vote down

codeproject sample is just a poor copy of MS sample...

link|flag

Your Answer

Get an OpenID
or

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