home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 3 Comm / 03-Comm.zip / dbox_g10.zip / DboxInst.CMD < prev    next >
OS/2 REXX Batch file  |  1997-12-31  |  514b  |  20 lines

  1. /*
  2.  * Speed Dragon Einrichtprogramm Installation
  3.  */
  4. CALL RxFuncAdd 'SysLoadFuncs', 'RexxUtil', 'SysLoadFuncs'
  5. CALL SysLoadFuncs
  6.  
  7. PARSE Arg Params
  8. IF Params = '' THEN
  9.  DO
  10.   SAY ''
  11.   SAY ' bitte serielle Schnittstelle angeben: "DboxInst COMx"'
  12.   SAY ''
  13.   '@PAUSE'
  14.   EXIT 0
  15.  END
  16. CurrDir = Directory()
  17. SetupStr= 'OBJECTID=<DBOX_SETUP>;EXENAME='CurrDir'\Dbox.EXE;STARTUPDIR='CurrDir';PARAMETERS='Params
  18. RetCode = SysCreateObject('WPProgram','Speed Dragon','<WP_DESKTOP>',SetupStr,'REPLACE')
  19. RETURN
  20.