In a pre-workflow (3.0) environment, if I have a process flow like this:
1) Run script A.ps1
2) Then start script B1.ps1 & B2.ps1 at the same time
3) Once both scripts have finished, start C.ps1
besides using Start-Job in a master (calling) script, can I leverage it using Task Scheduler? I don't need the result from any of the scripts just need them to run in that order.
1) Run script A.ps1
2) Then start script B1.ps1 & B2.ps1 at the same time
3) Once both scripts have finished, start C.ps1
besides using Start-Job in a master (calling) script, can I leverage it using Task Scheduler? I don't need the result from any of the scripts just need them to run in that order.