home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer 1 / 1994-12_-_Disc_1.iso / jazzjack / instjj.bat < prev    next >
DOS Batch File  |  1994-10-02  |  1KB  |  60 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. md c:\JAZZJACK
  15. xcopy *.* /s c:\JAZZJACK
  16.  
  17. echo You may need to run the Setup program.
  18. echo To play, enter the directory c:\JAZZJACK
  19. echo then type JAZZ and press ENTER
  20. c:
  21. goto end
  22.  
  23. :inst2
  24. md d:\JAZZJACK
  25. xcopy *.* /s d:\JAZZJACK
  26. echo You may need to run the Setup program.
  27. echo To play, enter the directory c:\JAZZJACK
  28. echo then type JAZZ and press ENTER
  29. d:
  30. goto end
  31.  
  32. :inst3
  33. md e:\JAZZJACK
  34. xcopy *.* /s e:\JAZZJACK
  35. echo You may need to run the Setup program.
  36. echo To play, enter the directory c:\JAZZJACK
  37. echo then type JAZZ and press ENTER
  38. e:
  39. goto end
  40.  
  41. :inst4
  42. md f:\JAZZJACK
  43. xcopy *.* /s f:\JAZZJACK
  44. echo You may need to run the Setup program.
  45. echo To play, enter the directory c:\JAZZJACK
  46. echo then type JAZZ and press ENTER
  47. f:
  48. goto end
  49.  
  50. :inst5
  51. md g:\JAZZJACK
  52. xcopy *.* /s g:\JAZZJACK
  53. echo You may need to run the Setup program.
  54. echo To play, enter the directory c:\JAZZJACK
  55. echo then type JAZZ and press ENTER
  56. g:
  57. goto end
  58.  
  59. :end
  60.