We use:
CALL RDKINSTALL(PATH)
To install a deployed patch/update.
Is there any way to find out whether this has been successful or not?
Thanks
Colin-
RDKInstall uses Set_Status, so you can check Get_Status.
Syntax:
Declare Function Get_Status
x=Get_Status(errors)
if Errors then
—
failed
—end
Hope it helps-
Mike Ruane
Woohoo, thanks…
Colin