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