home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / busi / pc_area.zip / PRINTDOC.BAT < prev    next >
DOS Batch File  |  1990-02-21  |  511b  |  18 lines

  1. ECHO OFF
  2. CLS
  3. ECHO This batch file will print the PC-Areacode documentation 
  4. ECHO file AC.DOC to printer port LPT1: 
  5. ECHO Please check that the printer is on !
  6. ECHO Please check that you have enough paper to print
  7. ECHO the entire manual (19 pages).
  8. ECHO Press any key to begin (Ctrl-Break to exit)....
  9. PAUSE
  10. IF NOT EXIST AC.DOC GOTO :NOTFOUND
  11. ECHO Now printing....
  12. COPY AC.DOC LPT1:
  13. ECHO Printing complete. 
  14. GOTO :END
  15. :NOTFOUND
  16. ECHO The file AC.DOC was not found.  Please check your disk.
  17. :END
  18.