home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Gamer 10
/
1995-09_Disc_10.iso
/
anvil
/
instanv.bat
< prev
next >
Wrap
DOS Batch File
|
1995-07-05
|
3KB
|
162 lines
cls
@echo off
@echo ╔══════════════════════════════════╗
@echo ║ Installation is only necessary ║
@echo ║ if you are not receiving sound. ║
@echo ║ ║
@echo ║ Exit here and try RUNNING the ║
@echo ║ game. If you don't get sound, ║
@echo ║ then install. This will take ║
@echo ║ 65MB of hard-drive space. ║
@echo ╚══════════════════════════════════╝
@echo .
@echo Select from one of the following options:
@echo (I)nstall
@echo (E)xit
@echo .
@echo Please enter a choice: I,E
choice /c:iex /n
if errorlevel 3 goto end
if errorlevel 2 goto end
if errorlevel 1 goto vpi
:vpi
@echo off
cls
@echo .
@echo ╔══════════════════════════════════════════╗
@echo ║ Please enter the letter of the HARD ║
@echo ║ DRIVE you wish to install to. ║
@echo ║ C is the most common response: ║
@echo ║ (C-Z are valid choices) ║
@echo ╚══════════════════════════════════════════╝
@echo .
@echo Enter Choice [default=C]:
@echo Type CTRL-C to exit
choice /c:cdefghijklmnopqrstuvwxyz /n
if errorlevel 24 goto dos24
if errorlevel 23 goto dos23
if errorlevel 22 goto dos22
if errorlevel 21 goto dos21
if errorlevel 20 goto dos20
if errorlevel 19 goto dos19
if errorlevel 18 goto dos18
if errorlevel 17 goto dos17
if errorlevel 16 goto dos16
if errorlevel 15 goto dos15
if errorlevel 14 goto dos14
if errorlevel 13 goto dos13
if errorlevel 12 goto dos12
if errorlevel 11 goto dos11
if errorlevel 10 goto dos10
if errorlevel 9 goto dos9
if errorlevel 8 goto dos8
if errorlevel 7 goto dos7
if errorlevel 6 goto dos6
if errorlevel 5 goto dos5
if errorlevel 4 goto dos4
if errorlevel 3 goto dos3
if errorlevel 2 goto dos2
if errorlevel 1 goto dos1
:dos24
INSTALL Z:
goto end
:dos23
INSTALL Y:
goto end
:dos22
INSTALL X:
goto end
:dos21
INSTALL W:
goto end
:dos20
INSTALL V:
goto end
:dos19
INSTALL U:
goto end
:dos18
INSTALL T:
goto end
:dos17
INSTALL S:
goto end
:dos16
INSTALL R:
goto end
:dos15
INSTALL Q:
goto end
:dos14
INSTALL P:
goto end
:dos13
INSTALL O:
goto end
:dos12
INSTALL N:
goto end
:dos11
INSTALL M:
goto end
:dos10
INSTALL L:
goto end
:dos9
INSTALL K:
goto end
:dos8
INSTALL J:
goto end
:dos7
INSTALL I:
goto end
:dos6
INSTALL H:
goto end
:dos5
INSTALL G:
goto end
:dos4
INSTALL F:
goto end
:dos3
INSTALL E:
goto end
:dos2
INSTALL D:
goto end
:dos1
INSTALL C:
goto end
:end