home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer 6 / 1995-05_Disc_6.iso / superkar / install.bat < prev    next >
DOS Batch File  |  1995-03-12  |  1KB  |  78 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. @echo off
  15. cd\
  16. cd\superkar
  17. md c:\kart
  18. pkunzip kart.zip c:\kart
  19. @echo .
  20. @echo Switch to the \KART directory on your
  21. @echo Hard Drive and type KART to play.
  22. @echo .
  23. goto end
  24.  
  25. :inst2
  26. @echo off
  27. cd\
  28. cd\superkar
  29. md d:\kart
  30. pkunzip kart.zip d:\kart
  31. @echo .
  32. @echo Switch to the \KART directory on your
  33. @echo Hard Drive and type KART to play.
  34. @echo .
  35.  
  36. goto end
  37.  
  38. :inst3
  39. @echo off
  40. cd\
  41. cd\superkar
  42. md e:\kart
  43. pkunzip kart.zip e:\kart
  44. @echo .
  45. @echo Switch to the \KART directory on your
  46. @echo Hard Drive and type KART to play.
  47. @echo .
  48.  
  49. goto end
  50.  
  51. :inst4
  52. @echo off
  53. cd\
  54. cd\superkar
  55. md f:\kart
  56. pkunzip kart.zip f:\kart
  57. @echo .
  58. @echo Switch to the \KART directory on your
  59. @echo Hard Drive and type KART to play.
  60. @echo .
  61.  
  62. goto end
  63.  
  64. :inst5
  65. @echo off
  66. cd\
  67. cd\superkar
  68. md g:\kart
  69. pkunzip kart.zip g:\kart
  70. @echo .
  71. @echo Switch to the \KART directory on your
  72. @echo Hard Drive and type KART to play.
  73. @echo .
  74.  
  75. goto end
  76.  
  77. :end
  78.