home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1999 March
/
Chip_1999-03_cd.bin
/
ovladace
/
Drivers
/
ALBIOS12.EXE
/
MK_BOOTZ.EXE
/
MK_BOOT.BAT
< prev
next >
Wrap
DOS Batch File
|
1997-07-21
|
844b
|
38 lines
@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