home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #1 / monster.zip / monster / FINANCE / LP203.ZIP / LP_BAT.EXE / LMMANUAL.BAT next >
DOS Batch File  |  1993-08-01  |  716b  |  31 lines

  1. @echo off
  2. if %1x==x goto NOTE1
  3.  
  4. if exist doc\manual.doc goto ALTV
  5.  
  6. copy /b lm\doc\manual.doc  %1
  7. if exist lm\doc\invoice.doc copy /b lm\doc\invoice.doc %1
  8. goto END
  9.  
  10. :ALTV
  11. copy /b doc\manual.doc  %1
  12. if exist doc\invoice.doc copy /b doc\invoice.doc %1
  13. goto END
  14.  
  15. :NOTE1
  16. echo.
  17. echo This utility can print the LaserMax manual on your laser printer.
  18. echo.
  19. echo To do this you must tell it where your laser is attached to your system.
  20. echo.
  21. echo For example, if the laser is your main system printer you would enter
  22. echo.
  23. echo LMMANUAL PRN
  24. echo          ---
  25. echo.
  26. echo Depending on your system you might replace PRN with LPT1, LPT2, LPT3,
  27. echo LPT4, COM1, COM2, COM3, COM4 or AUX.
  28. echo.
  29.  
  30. :END
  31.