home *** CD-ROM | disk | FTP | other *** search
/ PC/CD Review 40 / PCRFEB.BIN / airwar.bat next >
DOS Batch File  |  1994-12-09  |  774b  |  38 lines

  1. REM Air Warrior install Batch File.
  2. REM last edited 8/12/94, 18:10 by STUART
  3.  
  4. cls
  5. @echo off
  6. if "%2" == "" goto noparms
  7. goto install
  8.  
  9. :noparms
  10. echo  
  11. echo To install Air Warrior UK, please type ' AIRWAR X: Y: ' where X: is the letter 
  12. echo of the drive you wish to install from (your CD ROM drive) and Y: is the letter
  13. echo of the drive you wish to install to (Normally C:)
  14. echo  
  15. echo For example, to install from a CD on E: drive to your C: drive, you would type
  16. echo  
  17. echo AIRWAR E: C:
  18. echo  
  19. echo and the installation will commence.
  20. echo  
  21. goto end
  22.  
  23. :install
  24. choice /c:yn install from %1 to %2
  25. if errorlevel 1 goto :yes
  26. goto end
  27.  
  28. :yes
  29. %2
  30. cd \
  31. md airwar
  32. cd airwar
  33. %1\airwar\awinstal.exe
  34. copy %1\airwar.txt %2
  35. type %1\airwar.txt
  36.  
  37. :end
  38.