I have a powershell 2.0 script which should run a command on several servers and process the output. I want to run the command and the processing for each server in a backgr
This will also work, at least in Powershell 5
invoke-command -asjob -computer $PC -scriptblock { ## do stuff }