Hi,
Trying to iterate through all jobs and reset trigger dependencies with PowerShell which I assume resets the "fired times of trigger" back to 0.
Getting a job with something like $job ="http://localhost:8001/VisualCron/json/Job/Get?token=*****&id=1234567789"
I can see the jobs have a ResetTriggerDepedency which is set to False.
$job.ResetTriggerDepedency = "True"
I have tried to set this to True but this does not have the desired affect. The trigger still has a value of 1 when checking through the GUI.
Is this the correct method to reset this value?