I want to parallelize some file-parsing actions with network activity in powershell. Quick google for it, start-thread looked like a solution, but:
T
The answer, now, is quite simple.
Install-Module -Name ThreadJob -Confirm:$true $j1= Start-ThreadJob ` -FilePath $YourThreadJob ` -ArgumentList @("A","B") $j1|get-job $j1|receive-job