home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Gamer 6
/
1995-05_Disc_6.iso
/
superkar
/
install.bat
< prev
next >
Wrap
DOS Batch File
|
1995-03-12
|
1KB
|
78 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
@echo off
cd\
cd\superkar
md c:\kart
pkunzip kart.zip c:\kart
@echo .
@echo Switch to the \KART directory on your
@echo Hard Drive and type KART to play.
@echo .
goto end
:inst2
@echo off
cd\
cd\superkar
md d:\kart
pkunzip kart.zip d:\kart
@echo .
@echo Switch to the \KART directory on your
@echo Hard Drive and type KART to play.
@echo .
goto end
:inst3
@echo off
cd\
cd\superkar
md e:\kart
pkunzip kart.zip e:\kart
@echo .
@echo Switch to the \KART directory on your
@echo Hard Drive and type KART to play.
@echo .
goto end
:inst4
@echo off
cd\
cd\superkar
md f:\kart
pkunzip kart.zip f:\kart
@echo .
@echo Switch to the \KART directory on your
@echo Hard Drive and type KART to play.
@echo .
goto end
:inst5
@echo off
cd\
cd\superkar
md g:\kart
pkunzip kart.zip g:\kart
@echo .
@echo Switch to the \KART directory on your
@echo Hard Drive and type KART to play.
@echo .
goto end
:end