home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Gamer 13
/
1995-12_Disc_13.iso
/
bga
/
instbga.bat
< prev
next >
Wrap
DOS Batch File
|
1995-10-03
|
2KB
|
57 lines
cls
:menu
echo off
echo ╔════════════════════════════════════╗
echo ║ BATTLEGROUND ARDENNES Installation║
echo ║ ║
echo ║ This program may not install from ║
echo ║ our PC Gamer front end. If you ║
echo ║ have any problems, read the ║
echo ║ "Install Notes" below. ║
echo ╚════════════════════════════════════╝
echo.
echo.
echo Select from one of the following options:
echo 1. Install
echo 2. Install Notes
echo 3. E(X)it
echo.
echo Please enter a choice: 1,2,3
choice /c:123xi /n
if errorlevel 5 goto vpi
if errorlevel 4 goto end
if errorlevel 3 goto end
if errorlevel 2 goto run
if errorlevel 1 goto vpi
:vpi
CD\BGA
CALL WIN SETUP.EXE
goto end
:run
cls
echo ╔═════════════════════════════════════════════════════╗
echo ║ ║
echo ║ BATTLEGROUND ARDENNES INSTALLATION FOR WINDOWS ║
echo ║ ║
echo ║ If you're experiencing problems installing this ║
echo ║ program from our PC Gamer front end, you'll need ║
echo ║ to EXIT and load Windows. ║
echo ║ ║
echo ║ From Windows, pull down the FILE menu and select ║
echo ║ RUN. ║
echo ║ ║
echo ║ From the RUN option, enter D:\BGA\SETUP.EXE ║
echo ║ where "D:" is the letter of you CD-ROM drive. ║
echo ║ ║
echo ║ If you are using WINDOWS '95, access the \BGA ║
echo ║ directory on the CD and locate SETUP.EXE ║
echo ║ ║
echo ╚═════════════════════════════════════════════════════╝
echo.
pause
goto menu
:end