I have a scheduled task that runs a custom command that itself has multiple custom commands that run in a specific timed order. I would like the scheduler to run that top level custom command async (run on all targets at once) but the nested commands to run syncronously.
Scheduled task:
run Command 1 async
Command 1:
run Command A sync
run Command B sync
run Command C sync
If the scope include 10 targets, I want Command 1 run 10 times immediatly, which would trigger Command A 10 times, but Command B and C will wait for Command A to finish.
Is this possible?