home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 8 Other / 08-Other.zip / lpt49.zip / LPT49.CMD next >
OS/2 REXX Batch file  |  1995-08-02  |  245b  |  10 lines

  1. /* Lpt49 */
  2. say
  3. call charout, 'Adding LPT4 through LPT9 to system ini'
  4. call RxFuncAdd 'SysIni', 'RexxUtil', 'SysIni'
  5. do i = 4 to 9
  6.     call charout, '.'
  7.     call SysIni 'SYSTEM', 'PM_SPOOLER_PORT', 'LPT'||i, ';'||'00'x
  8. end
  9. say ' done.'
  10.