home *** CD-ROM | disk | FTP | other *** search
/ Between Heaven & Hell 2 / BetweenHeavenHell.cdr / 500 / 488 / print20.doc < prev    next >
Text File  |  1983-05-29  |  649b  |  28 lines

  1.  
  2. If you want the PRINT.COM program in dos 2.0 to skip
  3. the prompt for the output list device, to allow for
  4. automatic installation at boot-up,
  5.  
  6. A>debug print.com
  7. -e c0d 90 90
  8. -e c14 90 90
  9.  
  10. If your printer is the default, (LPT1:), that's all
  11. there is to it.  Write the file to disk and quit.
  12. If your printer is attached to some other port,
  13. like LPT2:, you must make one more patch, to specify
  14. the device.
  15.  
  16. -e 120d 5 "LPT2:"
  17.  
  18. The "5" in this case is the number of characters in
  19. the name of the device.  Substitute for whatever port
  20. your printer is attached to, then,
  21.  
  22. -w
  23. Writing xx bytes
  24. -q
  25. A>
  26.  
  27. And thats all there is to it.
  28.