home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Frostbyte's 1980s DOS Shareware Collection
/
floppyshareware.zip
/
floppyshareware
/
GLEN
/
XTREE.ZIP
/
PRINTDOC.BAT
< prev
next >
Wrap
DOS Batch File
|
1990-04-11
|
1KB
|
47 lines
ECHO OFF
CLS
ECHO -----------------------------------------------------------------
ECHO This Batch file will send the file 2_00EDOC.TXT to your printer
ECHO -----------------------------------------------------------------
ECHO .
ECHO Please make sure your printer is on-line and set to TOP OF FORM.
ECHO .
ECHO This documentation will take about 30 pages to print, if you do not
ECHO wish to print the documentation at this time, hold down the [Ctrl] key
ECHO and press the [Break] key.
ECHO .
ECHO Otherwise, the printing will begin as soon as you
PAUSE
CLS
ECHO Now printing Read Me file to printer with important information
ECHO about XTree ......
COPY READ.ME PRN: >NUL
ECHO .
ECHO .
ECHO Now printing Documentation for XTree ......
COPY 2_00EDOC.TXT PRN: >NUL
ECHO .
ECHO .
ECHO Now printing license agreement ......
COPY LICENSE.TXT PRN: >NUL
ECHO .
ECHO .
ECHO Now printing registration form ......
COPY REGISTER.FRM PRN: >NUL
CLS
ECHO .
ECHO .
ECHO XTree Documentation has been printed.
ECHO .
ECHO .
ECHO .
ECHO .
ECHO .
ECHO .
ECHO Thank you for using the XTree evaluation version!
ECHO .
ECHO .
ECHO .
ECHO .
ECHO End of file PRINTDOC.BAT - Returning to DOS . . . . . . .