Jobs: Clarify order of execution, sequencial, dependency between commands... * Use asjob / start-job / wait-job / Start-Job -Name "..." { sleep 20; get-process } * Get-WmiObject ... -asjob * $proc = get-job -Name "test" | Wait-Job | Receive-Job
Jobs: Clarify order of execution, sequencial, dependency between commands...