home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #30 / NN_1992_30.iso / spool / comp / lang / rexx / 1406 < prev    next >
Encoding:
Internet Message Format  |  1992-12-12  |  1.2 KB

  1. Path: sparky!uunet!vnet.ibm.com
  2. From: pmuellr@vnet.ibm.com (Pat Mueller)
  3. Message-ID: <19921212.054321.379@almaden.ibm.com>
  4. Date: Sat, 12 Dec 92 08:37:52 EST
  5. Newsgroups: comp.lang.rexx
  6. Subject: Re: Running REXX pgms from a minimal OS/2 system
  7. Lines: 33
  8.  
  9. It sounds like you got everything but the "CMD" address set up.
  10. The following information may or may not help - I haven't used
  11. BOOT20 so I don't know what it does.  The information was sent to
  12. me by Jon Seymour (IBM Australia):
  13.  
  14.   Loading REXX without PM
  15.   -----------------------
  16.   To load REXX without loading PM...
  17.  
  18.   REXXINIT.DLL must be loaded by a process which doesn't die.
  19.   The loading of REXXINIT will initialize REXX.  The process
  20.   mustn't die or REXX cannot be started again.
  21.  
  22.   To run rexx without PM you will need a process which executes a
  23.   DosLoadModule on REXXINIT.DLL then invokes a CMD.EXE process as
  24.   a child process (via DosExecPgm).
  25.  
  26.   Call this process: LOADREXX.EXE.
  27.  
  28.   Change CONFIG.SYS from:
  29.  
  30.     PROTSHELL=C:\os2\cmd.exe
  31.  
  32.     to
  33.  
  34.     PROTSHELL=C:\LOADREXX.EXE
  35.  
  36.   OS/2 will boot, run LOADREXX.EXE (which loads REXXINIT.DLL) and
  37.   then start a CMD.EXE session.  REXX can be used now.
  38.  
  39. Patrick Mueller
  40. pmuellr@vnet.ibm.com
  41. Programming Systems, IBM Cary, NC
  42.