home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Gamer 10
/
1995-09_Disc_10.iso
/
bbeast
/
instbatt.bat
< prev
Wrap
DOS Batch File
|
1995-06-29
|
1KB
|
53 lines
cls
@echo off
@echo ╔══════════════════════════════════╗
@echo ║ Battle Beast Installation Notes ║
@echo ╚══════════════════════════════════╝
@echo .
@echo Battle Beast is a Windows based game.
@echo .
@echo You can install the game to your hard-drive
@echo or you can set it up to run from the CD.
@echo .
@echo Select from one of the following options:
@echo 1. Hard Drive installation
@echo 2. Install to run off of CD-ROM
@echo 3. Windows '95 Note
@echo 4. E(X)it
@echo .
@echo Please enter a choice: 1,2,3,4
choice /c:1234x /n
if errorlevel 5 goto end
if errorlevel 4 goto end
if errorlevel 3 goto w95
if errorlevel 2 goto vpr
if errorlevel 1 goto vpi
:vpi
CLS
CD\BBEAST
CALL WIN HDSETUP.EXE
goto end
:vpr
CLS
CD\BBEAST
CALL WIN CDSETUP.EXE
goto end
:w95
cls
@echo off
@ECHO This installation will not work for
@echo Windows '95. To install the game,
@echo exit our front-end, go to your
@echo Windows '95 program manager and
@echo load the game through Windows '95.
@echo The game is located in the \BBEAST
@echo directory on the CD.
@echo .
pause
goto end
:end