home *** CD-ROM | disk | FTP | other *** search
- REM Air Warrior install Batch File.
- REM last edited 8/12/94, 18:10 by STUART
-
- cls
- @echo off
- if "%2" == "" goto noparms
- goto install
-
- :noparms
- echo
- echo To install Air Warrior UK, please type ' AIRWAR X: Y: ' where X: is the letter
- echo of the drive you wish to install from (your CD ROM drive) and Y: is the letter
- echo of the drive you wish to install to (Normally C:)
- echo
- echo For example, to install from a CD on E: drive to your C: drive, you would type
- echo
- echo AIRWAR E: C:
- echo
- echo and the installation will commence.
- echo
- goto end
-
- :install
- choice /c:yn install from %1 to %2
- if errorlevel 1 goto :yes
- goto end
-
- :yes
- %2
- cd \
- md airwar
- cd airwar
- %1\airwar\awinstal.exe
- copy %1\airwar.txt %2
- type %1\airwar.txt
-
- :end
-