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