home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Software Buyer's Guide Volume 7 #1
/
Software_Buyers_Guide_Volume_7_Number_1_SelectWare_Technologies_1995.iso
/
war10003
/
swtdemo.bat
< prev
next >
Wrap
DOS Batch File
|
1995-04-19
|
748b
|
53 lines
@echo off
:start
cls
echo.
echo Welcome to Return to RingWorld.
echo.
echo Choose one of the selections below:
echo.
echo 1. Install Return to RingWorld.
echo 2. Run RingWorld from default C:\R2RW
echo 3. View Readme File.
echo 4. Quit.
echo.
echo Please enter choice:
query
if errorlevel = 5 goto invalid
if errorlevel = 4 goto end
if errorlevel = 3 goto read
if errorlevel = 2 goto run
if errorlevel = 1 goto install
:invalid
cls
echo Invalid option
goto start
goto end
REM Ring World
:install
INSTALL.EXE
goto start
REM RUN
:run
c:
cd \r2rw
r2rw.exe
goto end
REM Create boot disk
:reset
goto end
:read
cls
readme.exe readme
goto start
:end