[Solved] Make USB key....
Moderator: DosItHelp
[Solved] Make USB key....
I want to format a USB key a particular way and copy certain files to it. I would like to automate this because I will be setting up a few USB keys....any ideas on a good way of getting this started? I want to make a master batch file that sets this up.
Last edited by Eagle710 on 24 Jun 2009 13:48, edited 1 time in total.
-
- Expert
- Posts: 391
- Joined: 19 Mar 2009 08:47
- Location: Iowa
Like this?
Code: Select all
set /p num=Enter the number of times you want to loop:
set count=1
:loop
cls
echo This is pass #%count% of %num%.
echo Press enter when the USB key is ready . . .
pause >nul
echo Put code here
set /a count+=1
if %count% LEQ %num% goto loop