home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 11 Util / 11-Util.zip / title2.zip / LOOK.CMD < prev    next >
OS/2 REXX Batch file  |  1995-08-28  |  608b  |  22 lines

  1. /* Install TITLE.DLL entry into USER INI file*/
  2. parse arg inifile
  3. Load_Sys()
  4. ini = 'USER'
  5. CR = d2c(10)
  6. string = SysIni(ini,"SYS_DLLS","LoadPerProcess")
  7. say string
  8. say "if the above says PMCTLS SND, or just PMCTLS run fix.cmd"
  9. say "otherwise modify fix.cmd to reflect what this displays"
  10. say "be carefull that only 1 space exists between each command"
  11. say "and do not include any entries more than once"
  12. say "**WARNING** TITLE.DLL does not work with OS/2 2.11 or OS/2 SMP"
  13.  
  14.  
  15. exit
  16.  
  17. Load_Sys: Procedure
  18. call RxFuncAdd 'SysLoadFuncs', 'RexxUtil', 'SysLoadFuncs'
  19. call SysLoadFuncs
  20. return ""
  21.  
  22.