home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer 3 / 1995-02_Disc_3.iso / cyberia / setup.bat < prev    next >
DOS Batch File  |  1994-11-30  |  493b  |  44 lines

  1. @echo off
  2. cls
  3. echo Please press the letter corresponding to
  4. echo your hard drive (C, D, E, F, and G are
  5. echo valid drive choices)
  6. choice /c:cdefg /n
  7. if errorlevel 5 goto inst5
  8. if errorlevel 4 goto inst4
  9. if errorlevel 3 goto inst3
  10. if errorlevel 2 goto inst2
  11. if errorlevel 1 goto inst1
  12.  
  13. :inst1
  14. INSTALL C:
  15.  
  16. c:
  17. goto end
  18.  
  19. :inst2
  20. INSTALL D:
  21.  
  22. d:
  23. goto end
  24.  
  25. :inst3
  26. INSTALL E:
  27.  
  28. e:
  29. goto end
  30.  
  31. :inst4
  32. INSTALL F:
  33.  
  34. f:
  35. goto end
  36.  
  37. :inst5
  38. INSTALL G:
  39.  
  40. g:
  41. goto end
  42.  
  43. :end
  44.