home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 18 REXX / 18-REXX.zip / ports.txt < prev    next >
Text File  |  1995-02-11  |  707b  |  22 lines

  1. INSTALLING LPT PORTS 4 THRU 9 IN OS/2 2.1, 2.11, AND WARP
  2.  
  3. Create the following REXX command file to update your
  4. OS/2 system for additional logical parallel ports.
  5.  
  6. *This will only work with OS/2.  N.Piland, Printer Specialist, IBM PC Company.
  7. *This example program is from the
  8. "OS/2 2.11 POWER TECHNIQUES (Official IBM Red Book Series)" by QUE Publishing.
  9.  
  10. REXX program example below this line:
  11. --------------------------------------------------------------------------
  12.  
  13. /* add lpt4 to lpt9 into OS2SYS.INI */
  14. call RxFuncAdd 'SysIni', 'RexxUtil', 'SysIni'
  15. do i = 4 to 9
  16.     call SysIni 'SYSTEM', 'PM_SPOOLER_PORT', 'LPT'||I, ';'||'00'x
  17. end
  18. say "Lpt4 thru Lpt9 Added Successfully"
  19. exit
  20.  
  21.  
  22.