Step 5Making the Drivers.bat
iImage Information

Finally we will make our last batch file. This file is the one that actually does the pod slurping. Once you've copied and pasted this into wordpad, or your word processor of choice, be sure to save it as Drivers.bat. Of course you can rename it anything you want as long as you go back into the Launch.bat file and change it to look for your renamed file. I just named mine Drivers so it looks a bit more inconspicuous. Also feel free to change the directory you would like to copy from My Documents to whatever you please. You can also add an additional duplicate line under the xcopy line with a different directory to copy other folders. Keep in mind this will take more time to copy, and more space on your storage device depending on the folder(s) chosen.
@echo off
mkdir %~d0\%computername%
xcopy "C:\Documents and Settings\%username%\My Documents" %~d0\%computername% /s/c/q/r/h
@cls
@exit