home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Gamer 13
/
1995-12_Disc_13.iso
/
endorfun
/
instendo.bat
< prev
Wrap
DOS Batch File
|
1995-10-04
|
2KB
|
60 lines
cls
:menu
echo off
echo ╔════════════════════════════════════╗
echo ║ ENDORFUN Installation Notes ║
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 ║ If you're using WINDOWS '95, also ║
echo ║ read the "Install Notes". ║
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\ENDORFUN
CALL WIN ENDORFUN.EXE
goto end
:run
cls
echo ╔═════════════════════════════════════════════════════╗
echo ║ ║
echo ║ ENDORFUN 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:\ENDORFUN\ENDORFUN.EXE║
echo ║ where "D:" is the letter of you CD-ROM drive. ║
echo ║ ║
echo ║ If you are using WINDOWS '95, access the \ENDORFUN ║
echo ║ directory on the CD and locate SETUP.EXE ║
echo ║ ║
echo ╚═════════════════════════════════════════════════════╝
echo.
pause
goto menu
:end