quick question here.
Is it possible to log when a process / chore etc. is aborted by an Administrator?
If so, could you tell me how to configure this?
Currently we have the problem that a process stops without error or any other "in logfile visible reason".
We wrapped the process into :
Code: Select all
ProcessReturnCode=ExecuteProcess('MyProcess');
IF(ProcessReturnCode <> ProcessExitNormal() );
vReturncode='ERROR ; Returncode: ' | NumberToString(ProcessReturnCode);
ELSE;
vsReturncode='SUCCESS';
ENDIF;