home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 November / Chip_2000-11_cd2.bin / servis / ovladace / drivers / SE2BIO17.exe / MK_BOOTZ.EXE / MK_BOOT.BAT < prev    next >
DOS Batch File  |  1999-09-14  |  853b  |  37 lines

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