home *** CD-ROM | disk | FTP | other *** search
- @echo off
-
- REM EDOS Boot Diskette ver 1.0, 7/21/97
-
- REM This batch file creates an EDOS Boot Diskette on a WindowsNT system.
-
- REM Sample command line is
- REM EDOS
-
- IF EXIST COMMAND.COM GOTO :NEXT
- GOTO :ERROR
- :NEXT
- IF EXIST INSTBOOT.EXE GOTO :NEXT1
- GOTO :ERROR
- :NEXT1
- IF EXIST DOS.SYS GOTO :CONTINUE
- :ERROR
- ECHO One of the files DOS.SYS, COMMAND.COM or INSTBOOT.EXE is not contained
- ECHO in the same directory as this batch file. Please place these files in
- ECHO the same directory and rerun this batch file from that directory
- GOTO :END
-
- :CONTINUE
- ECHO I am going to format the disk in drive A: If this is a problem
- ECHO press CTRL-C now to exit
- PAUSE
-
- format a:
-
- instboot
- COPY COMMAND.COM a: > NUL:
- COPY DOS.SYS a:> NUL:
-
- ECHO.
- ECHO.
- ECHO The creation of your EDOS Boot Diskette is now complete.
-
- :END