home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Collection of Education
/
collectionofeducationcarat1997.iso
/
TEACHING
/
GRADES27.ZIP
/
GO.BAT
< prev
next >
Wrap
DOS Batch File
|
1990-07-01
|
990b
|
42 lines
echo off
cls
:START
sask "Do you wish to (I)nstall or (R)ead the Read.me file first?" ir
if ERRORLEVEL=99 goto DONE
if ERRORLEVEL=2 goto READ
install
readme
goto MORE
:READ
readme
install
:MORE
cls
sask "Are you are user of Grades v2.60? (Y/N)" yn
if ERRORLEVEL=99 goto DONE
if ERRORLEVEL=2 goto CONT
sask "Is CLASS26 in the current directory? (Y/N)" ny
if ERRORLEVEL=99 goto DONE
if ERRORLEVEL=2 goto RENAME
echo
echo Please move into the proper directory or type EXIT if you do not
echo wish to continue. If you do not continue, you must manually rename
echo CLASS26 to CLASS27.
command
:RENAME
ren class26 class27
if exist class27 goto CONT
:ERROR
echo Could not Rename file... you must manually rename it!
:CONT
echo Installation has completed. Please read the documentation or press F1
echo for help within the program itself.
sask "(S)tart Grades or (Q)uit?" sq
if ERRORLEVEL=99 goto DONE
if ERRORLEVEL=2 goto DONE
grades27
:DONE
echo on