home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Gamer 7
/
1995-06_Disc_7.iso
/
brutal
/
runbrut.bat
< prev
Wrap
DOS Batch File
|
1995-04-06
|
653b
|
54 lines
@echo off
cls
echo Please press the letter corresponding to
echo your hard drive (C, D, E, F, and G are
echo valid drive choices)
choice /c:cdefg /n
if errorlevel 5 goto inst5
if errorlevel 4 goto inst4
if errorlevel 3 goto inst3
if errorlevel 2 goto inst2
if errorlevel 1 goto inst1
:inst1
c:
CD\GAMETEK\BRUTAL
CALL BRUTAL.EXE
%x%
CD\
goto end
:inst2
D:
CD\GAMETEK\BRUTAL
CALL BRUTAL.EXE
%x%
CD\
goto end
:inst3
E:
CD\GAMETEK\BRUTAL
CALL BRUTAL.EXE
%x%
CD\
goto end
:inst4
F:
CD\GAMETEK\BRUTAL
CALL BRUTAL.EXE
%x%
CD\
goto end
:inst5
G:
CD\GAMETEK\BRUTAL
CALL BRUTAL.EXE
%x%
CD\
goto end
:end