home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Personal Computer World 1995 May
/
pcw-0595.bin
/
demos
/
darkfrcs
/
install.bat
< prev
next >
Wrap
DOS Batch File
|
1995-02-20
|
993b
|
76 lines
@echo off
cls
md c:\lucasart
:start
echo Type in the letter of your CD ROM drive (ie. D)
reply
IF errorlevel 123 GOTO END
IF errorlevel 107 GOTO NO_KEY
IF errorlevel 105 GOTO RUNI
IF errorlevel 104 GOTO RUNH
IF errorlevel 103 GOTO RUNG
IF errorlevel 102 GOTO RUNF
IF errorlevel 101 GOTO RUNE
IF errorlevel 100 GOTO RUND
IF errorlevel 35 GOTO NO_KEY
:RUND
copy d c:\lucasart
c:
cd \lucasart
command /c sound
pause
dfdemo
goto end
:RUNE
copy e c:\lucasart
c:
cd \lucasart
command /c sound
pause
dfdemo
goto end
:RUNF
copy f c:\lucasart
c:
cd \lucasart
command /c sound
pause
dfdemo
goto end
:RUNG
copy g c:\lucasart
c:
cd \lucasart
command /c sound
pause
dfdemo
goto end
:RUNH
copy h c:\lucasart
c:
cd \lucasart
command /c sound
pause
dfdemo
goto end
:RUNI
copy i c:\lucasart
c:
cd \lucasart
command /c sound
pause
dfdemo
goto end
:NO_KEY
ECHO You need to type a letter in the range C-J
echo.
goto start
:END