Hi Dojo,
Is there a way to stop an Automation Script that runs in the background without waiting for the timeout time?
Hi Jens,
You can send an 'abort' message' to the server:
ScriptControlMessage abortMessage = new ScriptControlMessage(DataMinerID)
{
ScriptID = scriptID, //this is the running automation script ID
Type = ScriptControlType.Detach // this aborts the script
};
Hope this helps you further
Hi Jens,
Using the client test tool, you can find "automation" under the "advanced" menu.
From the pop-up, you can terminate any running script.