background job
-
Featured
get patch installed as background job
$servers = Get-Content -Path "C:\servers.txt" foreach($comp in $servers){ $pingtest = Test-Connection -ComputerName $comp -Quiet -Count 1 -ErrorAction SilentlyContinue if($pingtest){ Write-Host($comp…
Read More » -
Power Shell
Background job – examples
Use background job to run multiple script same time in background without waiting for session to complete $computer = @('server1',…
Read More »