home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 18 REXX / 18-REXX.zip / rxspool.zip / spldisab.cmd next >
OS/2 REXX Batch file  |  1998-11-18  |  208b  |  10 lines

  1. /* REXX script to disable the spooler */
  2. call RxFuncAdd 'SysIni', 'RexxUtil', 'SysIni'
  3.  
  4. szApp   = "PM_SPOOLER"
  5. szKey   = "SPOOL"
  6. szValue = "0;" || '00'x
  7.  
  8. call SysIni 'SYSTEM', szApp, szKey, szValue
  9.  
  10.