Windows NT 4.0 source code leak
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

22 lines
390 B

@echo off
if "%4"=="" goto USAGE
goto PUTIMAGE
:USAGE
echo PURPOSE: Creates a floppy disk set for a product.
echo.
echo PARAMETERS:
echo.
echo [Image Directory] - Directory where disk images are.
echo [Drive Letter] - a: or b:
echo [Drive Size] - 35 or 525
echo [FORMAT or NOFORMAT] - Format the disk first
echo.
goto END
:PUTIMAGE
for %%f in (%1\*.%3) do call oneimage %%f %2 %4
:END