home *** CD-ROM | disk | FTP | other *** search
/ Chip 1999 March / Chip_1999-03_cd.bin / ovladace / Drivers / SEBIOS10.EXE / MK_BOOTZ.EXE / MK_BOOT.BAT < prev    next >
Encoding:
DOS Batch File  |  1997-10-06  |  901 b   |  40 lines

  1. @echo off
  2.  
  3. REM EDOS Boot Diskette ver 1.0, 7/21/97
  4.  
  5. REM This batch file creates an EDOS Boot Diskette on a WindowsNT system.
  6.  
  7. REM Sample command line is
  8. REM EDOS 
  9.  
  10. IF EXIST COMMAND.COM GOTO :NEXT
  11. GOTO :ERROR
  12. :NEXT
  13. IF EXIST INSTBOOT.EXE GOTO :NEXT1
  14. GOTO :ERROR
  15. :NEXT1
  16. IF EXIST DOS.SYS GOTO :NEXT2
  17. :NEXT2
  18. IF EXIST FORMAT.COM GOTO :CONTINUE
  19. :ERROR
  20. ECHO One of the files DOS.SYS, COMMAND.COM, FORMAT.COM or INSTBOOT.EXE is not contained 
  21. ECHO in the same directory as this batch file.  Please place these files in
  22. ECHO the same directory and rerun this batch file from that directory
  23. GOTO :END
  24.  
  25. :CONTINUE
  26. ECHO I am going to format the disk in drive A:  If this is a problem 
  27. ECHO press CTRL-C now to exit
  28. PAUSE
  29.  
  30. format.com a: 
  31.  
  32. instboot
  33. COPY COMMAND.COM a: > NUL:
  34. COPY DOS.SYS a:> NUL:
  35.  
  36. ECHO.
  37. ECHO.
  38. ECHO The creation of your EDOS Boot Diskette is now complete.
  39.  
  40. :END