home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer 7 / 1995-06_Disc_7.iso / xcomii / insttftd.bat < prev    next >
DOS Batch File  |  1995-04-06  |  543b  |  39 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. cd\xcomii
  15. CALL INSTALL C:
  16. goto end
  17.  
  18. :inst2
  19. cd\xcomii
  20. CALL INSTALL D:
  21. goto end
  22.  
  23. :inst3
  24. cd\xcomii
  25. CALL install e:
  26. goto end
  27.  
  28. :inst4
  29. cd\xcomii
  30. CALL install f:
  31. goto end
  32.  
  33. :inst5
  34. cd\xcomii
  35. CALL install g:
  36. goto end
  37.  
  38. :end
  39.