home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Gamer 10
/
1995-09_Disc_10.iso
/
gcs
/
gcs.bat
< prev
next >
Wrap
DOS Batch File
|
1995-07-03
|
3KB
|
227 lines
cls
@echo off
@echo ╔═══════════════════════════════════════════════╗
@echo ║ Industrial Killers Installation & Play Notes ║
@echo ╚═══════════════════════════════════════════════╝
@echo .
@echo .
@echo Select from one of the following options:
@echo 1. Install to Hard Drive
@echo 2. Run Game from Hard Drive
@echo 3. Run Game from CD (may not include sound)
@echo 4. Notes
@echo 5. E(X)it
@echo .
@echo Please enter a choice: 1,2,3,4,5
choice /c:12345xri /n
if errorlevel 8 goto vpi
if errorlevel 7 goto vpr
if errorlevel 6 goto end
if errorlevel 5 goto end
if errorlevel 4 goto w95
if errorlevel 3 goto run
if errorlevel 2 goto vpr
if errorlevel 1 goto vpi
:vpi
cd\gcs
CALL INSTALL.EXE
goto end
:vpr
@echo off
cls
@echo .
@echo ╔══════════════════════════════════════════╗
@echo ║ Please enter the letter of the HARD ║
@echo ║ DRIVE you installed the game 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
Z:
CD\IKILLERS
CALL IKILLERS.EXE
goto end
:dos23
Y:
CD\IKILLERS
CALL IKILLERS.EXE
goto end
:dos22
X:
CD\IKILLERS
CALL IKILLERS.EXE
goto end
:dos21
W:
CD\IKILLERS
CALL IKILLERS.EXE
goto end
:dos20
V:
CD\IKILLERS
CALL IKILLERS.EXE
goto end
:dos19
U:
CD\IKILLERS
CALL IKILLERS.EXE
goto end
:dos18
T:
CD\IKILLERS
CALL IKILLERS.EXE
goto end
:dos17
S:
CD\IKILLERS
CALL IKILLERS.EXE
goto end
:dos16
R:
CD\IKILLERS
CALL IKILLERS.EXE
goto end
:dos15
Q:
CD\IKILLERS
CALL IKILLERS.EXE
goto end
:dos14
P:
CD\IKILLERS
CALL IKILLERS.EXE
goto end
:dos13
O:
CD\IKILLERS
CALL IKILLERS.EXE
goto end
:dos12
N:
CD\IKILLERS
CALL IKILLERS.EXE
goto end
:dos11
M:
CD\IKILLERS
CALL IKILLERS.EXE
goto end
:dos10
L:
CD\IKILLERS
CALL IKILLERS.EXE
goto end
:dos9
K:
CD\IKILLERS
CALL IKILLERS.EXE
goto end
:dos8
J:
CD\IKILLERS
CALL IKILLERS.EXE
goto end
:dos7
I:
CD\IKILLERS
CALL IKILLERS.EXE
goto end
:dos6
H:
CD\IKILLERS
CALL IKILLERS.EXE
goto end
:dos5
G:
CD\IKILLERS
CALL IKILLERS.EXE
goto end
:dos4
F:
CD\IKILLERS
CALL IKILLERS.EXE
goto end
:dos3
E:
CD\IKILLERS
CALL IKILLERS.EXE
goto end
:dos2
D:
CD\IKILLERS
CALL IKILLERS.EXE
goto end
:dos1
C:
CD\IKILLERS
CALL IKILLERS.EXE
goto end
:w95
CLS
CD\GCS
TYPE README.TXT
goto end
:run
CLS
CD\IK
CALL IKILLERS.EXE
:end