home *** CD-ROM | disk | FTP | other *** search
- ECHO off
- CLS
- TYPE startup.txt
- ECHO Do you want to print a copy of the instructions? (Y/N)
- YN
- IF ERRORLEVEL 1 GOTO L0
- ECHO Printing instruction file ...
- COPY STARTUP.TXT PRN
- :L0
- ECHO Do you want to run E8M.EXE and produce the editor now? (Y/N)
- YN
- IF ERRORLEVEL 1 GOTO L1
- E8M.EXE
- CLS
- :L1
- ECHO Would you like to print the E88.DOC file now? (Y/N)
- YN
- IF ERRORLEVEL 1 GOTO L4
- CLS
- ECHO The .DOC file may be printed either full sized or compressed (Epson com-
- ECHO patible printers only) to fit in small (IBM type) notebook.
- REM
- ECHO Would you like a full sized printout? (Y/N)
- YN
- IF ERRORLEVEL 1 GOTO L3
- :L2
- ECHO Printing .DOC file ...
- COPY E88.DOC PRN
- GOTO L4
- :L3
- COPY COMPRESS.CTL PRN
- GOTO L2
- :L4
- ECHO Would you like to print a summary of changes made in E88 ver. 4.20? (Y/N)
- YN
- IF ERRORLEVEL 1 GOTO L5
- COPY CHANGES.TXT PRN
- :L5
- ECHO -------------------------------------------------------------------------
- ECHO * W A R N I N G * For users updating to the new version.
- ECHO You MUST erase all existing E88SETUP.DEF and .PGR files. The older files
- ECHO are not compatible with E88 ver. 4.20 and will cause the program to act
- ECHO abnormally. Although this is not dangerous, erasing these files now will
- ECHO save you some confusion. Sorry for the inconvenience.
- ECHO --- Batch file complete ---