Hello,
I have an automation script that enables a group of channels on specific AppearTV elements. This automation is straightforward and simply executes the following command:
appearTVElement.SetParameterByPrimaryKey(1643, appearTVData.PK, "Enabled");
The issue is that this command is taking around 8 seconds to execute, and since the groups contain many channels, the overall process is taking too long.
Is there a more efficient way to achieve this?
I have already set the flag:
engine.SetFlag(RunTimeFlags.NoCheckingSets);
Thanks in advance!
Hi Max,
Maybe you can avoid the SetCheck to make the script faster.
if your execution is from a Visio file, you need to configure NoSetCheck option
Linking a shape to an Automation script | DataMiner Docs
Regards.