home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Gamer 5
/
1995-04_Disc_5.iso
/
demo1
/
runnoct.bat
< prev
next >
Wrap
DOS Batch File
|
1995-01-26
|
558b
|
49 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\noctdemo
Noctdemo
c:
goto end
:inst2
D:
cd\noctdemo
Noctdemo
D:
goto end
:inst3
E:
cd\noctdemo
Noctdemo
e:
goto end
:inst4
F:
cd\noctdemo
Noctdemo
F:
goto end
:inst5
G:
cd\noctdemo
Noctdemo
G:
goto end
:end