home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Shareware BBS: 3 Comm
/
03-Comm.zip
/
dbox_g10.zip
/
DboxInst.CMD
< prev
next >
Wrap
OS/2 REXX Batch file
|
1997-12-31
|
514b
|
20 lines
/*
* Speed Dragon Einrichtprogramm Installation
*/
CALL RxFuncAdd 'SysLoadFuncs', 'RexxUtil', 'SysLoadFuncs'
CALL SysLoadFuncs
PARSE Arg Params
IF Params = '' THEN
DO
SAY ''
SAY ' bitte serielle Schnittstelle angeben: "DboxInst COMx"'
SAY ''
'@PAUSE'
EXIT 0
END
CurrDir = Directory()
SetupStr= 'OBJECTID=<DBOX_SETUP>;EXENAME='CurrDir'\Dbox.EXE;STARTUPDIR='CurrDir';PARAMETERS='Params
RetCode = SysCreateObject('WPProgram','Speed Dragon','<WP_DESKTOP>',SetupStr,'REPLACE')
RETURN