home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DOS/V Power Report 1998 October
/
VPR9810B.BIN
/
IBM_OS
/
JDK116
/
JAVAINUF.ZIP
/
maketmp.cmd
< prev
next >
Wrap
OS/2 REXX Batch file
|
1998-05-14
|
665b
|
23 lines
/* rexx */
parse arg fHandle bootdrive switch
call RxFuncAdd 'RexxInstResolveVariables', 'WPINSTAL', 'RexxInstResolveVariables'
continue = RexxInstResolveVariables( fHandle, "{Continue}", 1)
if (switch == "erase") then
DO
if continue = "UNATTENDED" then EXIT
'erase 'bootdrive'\kmcrpc10.sl';
EXIT
END
if (switch == "applet") then
DO
drive = RexxInstResolveVariables( fHandle, "{RUNDRV}", 1)
'COPY ' drive'\java11\bin\applet.exe 'drive'\java11\bin\appletviewer.exe'
END
else
DO
if continue = "UNATTENDED" then EXIT
'syslevel > 'bootdrive'\kmcrpc10.sl'
END