I have tedious project coming up. I need to insert a usb flash drive into a computer, then copy over three files to that drive, and then unmount it and repeat 3000 times (literally). I was hoping to come up with some VB Script that can reduce my input to just 1.) insert the usb and 2.) double click on the .vbs file and remove the usb flash drive.

I figure it isnt too difficult to come up with the copy and paste part of the code as long as I am inserting the usb into the same port every time. Is this assumption correct? However, the real problem is unmounting/ejecting the usb drive. Is there any simple VB Script code that can accomplish this?

Thank you, -Corey

link|improve this question
the drives will be plugged in and unplugged one at a time – user736887 Nov 21 '11 at 3:53
feedback

2 Answers

This was the first Google result for vbscript unmount: Unmounting USB drives


This worked on Windows 7 if the script is run elevated (as an Administrator):

Set shell = WScript.CreateObject("WScript.Shell")
shell.Run "mountvol <drive>: /d"

mountvol is included with Windows.


You could probably even reduce the input needed by polling the drive letter that your USB sticks mount to, and if there is a drive present, copy the files over and then unmount.

link|improve this answer
I have looked at that thread before posting this. The problem with that is it is an .exe file rather than a vbscript, I was hoping to have all of this code run from just one .vbs file – user736887 Nov 21 '11 at 3:26
feedback

Since you're doing this with a thumbdrive, you can put DevCon on it and use DevCon to eject the drive..

http://support.microsoft.com/kb/311272

or you can also try DevEject

http://translate.google.com/translate?u=http://www.withopf.com/tools/deveject/&langpair=de%7Cen

link|improve this answer
You should make your script to eject copy itself to the PC first before executing, otherwise it might not eject safely or at all since it's on the thumb drive you're ejecting. – druciferre Nov 21 '11 at 2:00
The usb drives will be empty and I will need to copy over files from the hard drive to the flash drive. I dont think I would be allowed to copy over the code file to the flash drive anyway since my work only wants three specific files – user736887 Nov 21 '11 at 3:25
Are these computers networked? There has to be a better way than sneaker netting these files. – druciferre Nov 21 '11 at 3:50
the goal of this project is to put three certain files on each of 3000 usb drives. I am just looking for a scripting solution to make that repetitive task easier. – user736887 Nov 21 '11 at 3:53
If the computers are networked, I could help you make it so all you have to do is plug all of the drives in, go to one computer, execute a single script, and then unplug the drives. – druciferre Nov 21 '11 at 4:17
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

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