home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Gamer 13
/
1995-12_Disc_13.iso
/
upinball
/
inst3dpb.bat
< prev
next >
Wrap
DOS Batch File
|
1995-10-04
|
3KB
|
64 lines
cls
:menu
echo off
echo ╔════════════════════════════════════╗
echo ║ 3D ULTRA PINBALL 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 ║ If you have WINDOWS '95, you'll ║
echo ║ need to exit our PC Gamer CD, ║
echo ║ enter WINDOWS '95 and run the ║
echo ║ game from there. ║
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\UPINBALL
CALL WIN SETUP.EXE
goto end
:run
cls
echo ╔═════════════════════════════════════════════════════╗
echo ║ ║
echo ║ 3D ULTRA PINBALL 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:\UPINBALL\SETUP.EXE ║
echo ║ where "D:" is the letter of you CD-ROM drive. ║
echo ║ ║
echo ║ If you are using WINDOWS '95, access the \UPINBALL ║
echo ║ directory on the CD and locate SETUP.EXE ║
echo ║ ║
echo ╚═════════════════════════════════════════════════════╝
echo.
pause
goto menu
:end