home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 April / chip-cd_1998_04.zip / 04 / OFFLINE / ROK2000 / DATE2000 / CRBOOT.BAT < prev    next >
DOS Batch File  |  1997-08-29  |  566b  |  27 lines

  1. @echo off
  2. if "%1"=="" goto er1
  3. cls
  4. type intro
  5.  
  6. pause
  7. echo Creating disk, please wait. . .
  8. format %1/u/s < no.inp > nul:
  9. if errorlevel 1 goto er2
  10. copy reset.com a:\ > nul:
  11. copy t2000fp.exe a:\ > nul:
  12. copy autoexec.sch a:\autoexec.bat > nul:
  13.  
  14. echo Boot disk created. Now restart the computer with the disk in drive A.
  15. goto End
  16.  
  17. :er1
  18. echo To use, log to the directory where Date2000 software exists and type:
  19. echo       crboot 'Drive'
  20. echo       eg: crboot A:
  21. goto End
  22.  
  23. :er2
  24. echo Format failed. Check write-protect, or use another disk.
  25.  
  26. :End
  27.