Hey,
Is there a way to set a paramter that has confirmation message using automation script?
We would like to take weekly config backups of a certain device using a scheduled script. Today in the driver the paramter that can export the config is asking "Confirmation message" from the user - due to this the "Set" action in the automation script is not working. (nothing is happening) if in the driver we remove this confirmation message the "Set" command is working propetly.
We would like to keep the confirmation message but to also be able to set this parameter using automation script.
Thank you.
Hi Guy,
Can you try using the method SetFlag to set the run time flag to NoCheckingSets?
engine.SetFlag(RunTimeFlags.NoCheckingSets);
Hope it helps!
Hi Guy,
Glad to hear that it worked!
Thank you 🙂 It is now working properly.