home *** CD-ROM | disk | FTP | other *** search
/ Big Blue Disk 18 / bbd18new.zip / PRINTMAN.BAT < prev    next >
DOS Batch File  |  1987-12-04  |  2KB  |  42 lines

  1. ECHO OFF
  2. CLS
  3. IF .%1 == .N goto cont
  4. if .%1 == .n goto cont
  5. IF .%1 == .E goto cont
  6. if .%1 == .e goto cont
  7. ECHO    .                                                           .
  8. ECHO    .                                                           .
  9. ECHO    .                                                           .
  10. ECHO    ╔═══════════════════════════════════════════════════════════╗
  11. ECHO    ║   To print out the manual on a non-Epson printer, enter:  ║
  12. ECHO    ║               PRINTMAN N                                  ║
  13. ECHO    ║                                                           ║
  14. ECHO    ║   To print out the manual on an Epson compatible printer, ║
  15. ECHO    ║   enter:      PRINTMAN E                                  ║
  16. ECHO    ║                                                           ║
  17. ECHO    ╚═══════════════════════════════════════════════════════════╝
  18. GOTO Leave
  19. :cont
  20. CLS 
  21. if %1 == e elite
  22. if %1 == E elite        
  23. ECHO                                                               .
  24. ECHO                                                               .
  25. ECHO       ╔════════════════════════════════════════════════════════╗
  26. ECHO       ║                                                        ║
  27. ECHO       ║   CHECK YOUR PRINTER if the printing doesn't start     ║
  28. ECHO       ║   now.  Once it does start, it's a good time to go     ║
  29. ECHO       ║   for that cup of coffee.                              ║
  30. ECHO       ║                                                        ║
  31. ECHO       ╚════════════════════════════════════════════════════════╝
  32. type checkman.doc > lpt1:
  33. REM '
  34. REM The above statement redirects the output of the DOS TYPE command
  35. REM to lpt1, which is normally the name of the port used by the printer.
  36. REM If this batch file isn't working for you, you may be using a different
  37. REM port.  Change 'lpt1' above to the name of the port on which you
  38. REM have YOUR printer.
  39. PAUSE
  40. :Leave
  41. EXIT
  42.