home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The SelectWare System Volume 2 #3
/
The_SelectWare_System_Series_1_Volume_2_Number_3_Selectware.iso
/
lot10040
/
go.bat
< prev
next >
Wrap
DOS Batch File
|
1990-02-20
|
1KB
|
60 lines
echo off
cls
:start
echo .
echo The Lotus Magellan demo can be run interactively,
echo or you can make a copy to take home.
echo .
echo Please choose one of the selections below:
echo .
echo 1. Interactive demo
echo 2. Copy the demo to drive A: (you must have a formatted diskette)
echo 3. Quit
echo .
echo Please enter the number for your choice:
query
if errorlevel = 3 goto exit
if errorlevel = 2 goto copydemo
if errorlevel = 1 goto inter
goto end
REM run interactive demo
:inter
echo Loading interactive demo
DEMO
goto end
REM copy demo to A:
:copydemo
echo .
echo .
echo YOU MUST HAVE A BLANK, 1.2MB FLOPPY TO COPY THIS DEMO
echo .
echo Please insert the blank, formatted floppy in drive A:
echo Or press Ctrl-C to quit.
echo .
pause
REM copy all files for the demo. This also copies subdirs
xcopy *.* a:\ /s
echo .
goto :end
:exit
echo .
echo returning to The SelectWare System
exit
:end
echo .
echo Type GO [Enter] to display the menu again, or
echo type EXIT [Enter] to return to The SelectWare System.
echo .
echo on
:finish