home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mission Pom-Bär: The Snack 'N' Run Game
/
POMBAER.bin
/
install.bat
< prev
next >
Wrap
DOS Batch File
|
1997-09-26
|
1KB
|
56 lines
@echo off
cls
echo.
echo ──────────────────────────────────────────────────────────────────────────────
echo MISSION POM-BAER INSTALLATION
echo.
echo To install the game you have to choose between a small and
echo a large version (with or without 3D rendered animations)
echo ──────────────────────────────────────────────────────────────────────────────
echo.
echo PLEASE SELECT ONE OF THE FOLLOWING:
echo ───────────────────────────────────
echo.
echo 1 FULL INSTALLATION which will require about 30 MB
echo free space on your harddisk. This version contains
echo 3D rendered animations.
echo.
echo 2 SMALL INSTALLATION which will require about 5 MB
echo free space on your harddisk. This version comes
echo without any 3D animations.
echo.
echo 3 Abort installation.
echo ──────────────────────────────────────────────────────────────────────────────
echo.
choice /N /C:123 Make your choice:
if errorlevel 3 goto quit:
if errorlevel 2 goto mini:
if errorlevel 1 goto full:
:full
cd full
install.bat
goto end
:mini
cd mini
install.bat
goto end
:quit
cls
echo Installation aborted.
goto end
:end
cd\