home *** CD-ROM | disk | FTP | other *** search
/ CD-ROM Today - The Disc! 7 / CD-ROM_Today_-_The_Disc_7_January_1995.iso / pc / cyberia / cybinstf.bat < prev    next >
DOS Batch File  |  1994-11-11  |  301b  |  27 lines

  1. @echo off
  2.  
  3. REM JGP:)
  4.  
  5. cls
  6.  
  7. echo On which hard drive did you
  8. echo install the Disc's DOS front-end?
  9. choice /c:CDE
  10. if errorlevel 3 goto E
  11. if errorlevel 2 goto D
  12. if errorlevel 1 goto C
  13.  
  14. :C
  15. call install C:
  16. goto end
  17.  
  18. :D
  19. call install D:
  20. goto end
  21.  
  22. :E
  23. call install E:
  24. goto end
  25.  
  26. :end
  27.