home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer 7 / 1995-06_Disc_7.iso / genie / airwarri / instairw.bat < prev    next >
DOS Batch File  |  1995-04-06  |  1KB  |  73 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:\AWARRIOR
  15. xcopy *.* /s c:\AWARRIOR
  16. c:
  17. cd\awarrior
  18. CALL install.bat
  19.  
  20. echo To play, enter the directory c:\AWARRIOR
  21. echo Type INSTALL, wait until the files have decompressed, 
  22. echo then type AIRWAR
  23.  
  24. goto end
  25.  
  26. :inst2
  27. md d:\AWARRIOR
  28. xcopy *.* /s d:\AWARRIOR
  29. d:
  30. cd\awarrior
  31. CALL install.bat
  32.  
  33. echo To play, enter the directory c:\AWARRIOR
  34. echo Type INSTALL, wait until the files have decompressed, then type AIRWAR
  35.  
  36. goto end
  37.  
  38. :inst3
  39. md e:\AWARRIOR
  40. xcopy *.* /s e:\AWARRIOR
  41. e:
  42. cd\awarrior
  43. CALL install.bat
  44.  
  45. echo To play, enter the directory c:\AWARRIOR
  46. echo Type INSTALL, wait until the files have decompressed, then type AIRWAR
  47.  
  48. goto end
  49.  
  50. :inst4
  51. md f:\AWARRIOR
  52. xcopy *.* /s f:\AWARRIOR
  53. f:
  54. cd\awarrior
  55. CALL install.bat
  56. echo To play, enter the directory c:\AWARRIOR
  57. echo Type INSTALL, wait until the files have decompressed, then type AIRWAR
  58.  
  59. goto end
  60.  
  61. :inst5
  62. md g:\AWARRIOR
  63. xcopy *.* /s g:\AWARRIOR
  64. g:
  65. cd\awarrior
  66. call install.bat
  67. echo To play, enter the directory c:\AWARRIOR
  68. echo Type INSTALL, wait until the files have decompressed, then type AIRWAR
  69.  
  70. goto end
  71.  
  72. :end
  73.