home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer 7 / 1995-06_Disc_7.iso / tico / runtico.bat < prev    next >
DOS Batch File  |  1995-04-06  |  633b  |  54 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. c:
  15. CD\TICODEMO
  16. CALL TICODEMO.BAT
  17. %x%
  18. CD\
  19. goto end
  20.  
  21. :inst2
  22. D:
  23. CD\TICODEMO
  24. CALL TICODEMO.BAT
  25. %x%
  26. CD\
  27. goto end
  28.  
  29. :inst3
  30. E:
  31. CD\TICODEMO
  32. CALL TICODEMO.BAT
  33. %x%
  34. CD\
  35. goto end
  36.  
  37. :inst4
  38. F:
  39. CD\TICODEMO
  40. CALL TICODEMO.BAT
  41. %x%
  42. CD\
  43. goto end
  44.  
  45. :inst5
  46. G:
  47. CD\TICODEMO
  48. CALL TICODEMO.BAT
  49. %x%
  50. CD\
  51. goto end
  52.  
  53. :end
  54.