home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #1 / monster.zip / monster / DRIVERS / TSEP62.ZIP / MAKEDISK.BAT next >
DOS Batch File  |  1994-02-15  |  1KB  |  56 lines

  1. @echo off
  2. read1st
  3.  
  4. cls
  5. echo Toshiba Special Enhancements Package for MS-DOS 6.2
  6. echo  
  7. echo Please make sure a blank, formatted diskette is
  8. echo inserted into drive A: before continuing with
  9. echo the Toshiba Special Enhancements Disk installation.
  10. echo  
  11. choice Press `Y' to continue or `N' to abort. 
  12. if errorlevel==2 goto abort
  13. if errorlevel==1 goto makedisk
  14. if errorlevel==0 goto abort
  15.  
  16. :makedisk
  17. cls
  18. sed -d a:
  19. readme
  20. cls
  21.  
  22. echo  
  23. echo Toshiba Special Enhancements Package for MS-DOS 6.2
  24. echo  
  25. echo Press `Y' to install the Toshiba Enhancements for MS-DOS 6.2 now,
  26. choice or `N' to exit back to MS-DOS and install the enhancements later. 
  27. cls
  28. if errorlevel==2 goto later
  29. if errorlevel==1 goto SETUP
  30. if errorlevel==0 goto abort
  31.  
  32. :SETUP
  33. A:SETUP
  34. goto end
  35.  
  36. :later
  37. cls
  38. echo  
  39. echo Toshiba Special Enhancements Package for MS-DOS 6.2
  40. echo  
  41. echo TSEP diskette created.  Enter "A:SETUP" with this diskette in
  42. echo the A: drive to install the enhancments.
  43. echo  
  44. goto end
  45.  
  46. :abort
  47. cls
  48. echo  
  49. echo Toshiba Special Enhancements Package for MS-DOS 6.2
  50. echo Installation aborted.
  51. echo  
  52.  
  53. :end
  54.  
  55. REM * MAKEDISK.BAT - 2/6/93  Jim Rohrer
  56.