mirror of https://github.com/lianthony/NT4.0
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.
25 lines
461 B
25 lines
461 B
@echo off
|
|
|
|
if "%2"=="" goto USAGE
|
|
|
|
goto ONEIMAGE
|
|
|
|
:USAGE
|
|
echo PURPOSE: Copies a single disk image to floppy.
|
|
echo.
|
|
echo PARAMETERS:
|
|
echo.
|
|
echo [Image File] - Path of image file.
|
|
echo [Drive Letter] - a: or b:.
|
|
echo [Format first] - FORMAT or NOFORMAT
|
|
echo.
|
|
goto END
|
|
|
|
:ONEIMAGE
|
|
echo Put a floppy in drive %2. The contents will be destroyed.
|
|
echo About to make image from: %1.
|
|
pause
|
|
if "%3"=="FORMAT" dskimage %1 %2 /f
|
|
if NOT "%3"=="FORMAT" dskimage %1 %2
|
|
|
|
:END
|