home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Gamer 14
/
1996-01_Disc_14.iso
/
genie
/
instgen.bat
< prev
next >
Wrap
DOS Batch File
|
1995-09-05
|
3KB
|
75 lines
cls
:menu
echo off
echo ╔════════════════════════════════════╗
echo ║ GEnie 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.
echo.
echo Select from one of the following options:
echo 1. Install
echo 2. Install Notes
echo 3. Windows '95 Install Notes
echo 4. E(X)it
echo.
echo Please enter a choice: 1,2,3,4
choice /c:1234xi /n
if errorlevel 6 goto vpi
if errorlevel 5 goto end
if errorlevel 4 goto end
if errorlevel 3 goto win
if errorlevel 2 goto run
if errorlevel 1 goto vpi
:vpi
CD\GENIE
CALL WIN SETUP.EXE
goto end
:run
cls
echo ╔═════════════════════════════════════════════════════╗
echo ║ ║
echo ║ GENIE 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:\GENIE\SETUP.EXE ║
echo ║ where "D:" is the letter of you CD-ROM drive. ║
echo ║ ║
echo ╚═════════════════════════════════════════════════════╝
echo.
pause
goto menu
:win
cls
echo ╔═════════════════════════════════════════════════════╗
echo ║ ║
echo ║ GENIE INSTALLATION FOR WINDOWS '95 ║
echo. ║ ║
echo ║ If you're experiencing problems installing this ║
echo ║ program with Windows '95, you'll need to Exit our ║
echo ║ front end and load the program manually. ║
echo. ║ ║
echo ║ To do this, access the \GENIE directory on our ║
echo ║ CD and locate the file SETUP.EXE. ║
echo. ║ ║
echo ╚═════════════════════════════════════════════════════╝
echo.
pause
goto menu
:end