Quick Procedure Question.

I am having to build a procedure to do want I am wanting, for auto remediation, but my question is, do I have to put anything between the the imported procedures, to make them wait before moving on the the next stage of my procedure, with will be a complete different procedure.

Hi @BOSS

You don’t need to mention anything between imported procedures. In general, the script will go to next stage only if the previous stage completed.
if you want, you can add below lines for your satisfactory performance,

import time
time.sleep(seconds)

Note: replace “seconds” with your desired waiting period in seconds.

Great, thanks for the quick reply!!