Overview
Looking to call a Powershell script that takes in an argument, runs each job in the background, and shows me the verbose output.
You can get the results by doing something like this after all the jobs have been received:
$array=@() Get-Job -Name * | where{$array+=$_.ChildJobs.output}
.ChildJobs.output will have anything that was returned in each job.