Important Notice: On February 29th, this community was put into read-only mode. All existing posts will remain but customers are unable to add new posts or comment on existing. Please feel to join our Community Discord for any questions and discussions.

Sleep Step

I have a package in PDQ Connect.  I need to add a sleep step.

0

Comments

1 comment
Date Votes
  • Add a script step, then use the Start-Sleep command to add a sleep step. To pause for 2 minutes, use

    Start-Sleep -Seconds 120

    0