home *** CD-ROM | disk | FTP | other *** search
/ PC Media 3 / PC MEDIA CD03.iso / share / os2 / mpm1_10a / install.cmd < prev    next >
Encoding:
Text File  |  1994-04-03  |  557 b   |  20 lines

  1. /***************************************************/
  2. /* Create MaxFile/PM program object on the Desktop */
  3. /***************************************************/
  4.  
  5. Call RxFuncAdd 'SysLoadFuncs', 'RexxUtil', 'SysLoadFuncs'
  6. Call SysLoadFuncs
  7.  
  8. Parse Upper Arg iDir junk
  9.  
  10. if iDir = ' ' then do
  11.     Say
  12.     Say 'Usage: INSTALL ProgramDir'
  13.     Exit
  14. end
  15.  
  16. Say
  17. Say 'Creating MaxFile/PM Desktop program object.'
  18. r = SysCreateObject("WPProgram", "MaxFile/PM", "<WP_DESKTOP>",,
  19.                     "EXENAME="||iDir||"\MAXFMPM.EXE;STARTUPDIR="||iDir )
  20.