home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer 7 / 1995-06_Disc_7.iso / chaos / instmenu.bat < prev    next >
DOS Batch File  |  1995-04-06  |  1KB  |  66 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:\CHAOS
  15. xcopy *.* /s c:\CHAOS
  16. echo To play, enter the directory c:\CHAOS
  17. echo on your HARD DRIVE and type CEDEMO
  18. echo to start the game.
  19. %x%
  20. CD\
  21. goto pcg
  22.  
  23. :inst2
  24. md d:\CHAOS
  25. xcopy *.* /s d:\CHAOS
  26. echo To play, enter the directory d:\CHAOS
  27. echo on your HARD DRIVE and type CEDEMO
  28. echo to start the game.
  29. %x%
  30. CD\
  31. goto pcg
  32.  
  33. :inst3
  34. md e:\CHAOS
  35. xcopy *.* /s e:\CHAOS
  36. echo To play, enter the directory e:\CHAOS
  37. echo on your HARD DRIVE and type CEDEMO
  38. echo to start the game.
  39. %x%
  40. CD\
  41. goto pcg
  42.  
  43. :inst4
  44. md f:\CHAOS
  45. xcopy *.* /s f:\CHAOS
  46. echo To play, enter the directory f:\CHAOS
  47. echo on your HARD DRIVE and type CEDEMO
  48. echo to start the game.
  49. %x%
  50. CD\
  51. goto pcg
  52.  
  53. :inst5
  54. md g:\CHAOS
  55. xcopy *.* /s g:\CHAOS
  56. echo To play, enter the directory g:\CHAOS
  57. echo on your HARD DRIVE and type CEDEMO
  58. echo to start the game.
  59. %x%
  60. CD\
  61. goto pcg
  62.  
  63. :pcg
  64. menu.bat
  65.  
  66.