4

我正在尝试对我们环境中的服务器列表运行病毒扫描。有数百台机器,所以我们希望一次运行大约 10 台扫描(使用我们已经拥有的命令行提示符)。我们对 PowerShell 完全陌生,因此我们将不胜感激。我们对需要使用哪些命令有一个大致的了解——以下是我们认为它现在可能的工作方式:

$server = Get-Content "serverlist.txt"
$server | % {
  $VirusScan = { Scan32.exe }
  Invoke-Command -ScriptBlock { $VirusScan } -computerName $server -ThrottleLimit 10 -Authentication domain/admin 
}

有人对我们如何安排这个有任何建议吗?

4

1 回答 1

6

我正在使用这样的东西在远程主机上并行运行任务:

$maxSlots = 10
$hosts = "foo", "bar", "baz", ...

$job = {
  Invoke-Command -ScriptBlock { Scan32.exe } -Computer $ARGV[0] -ThrottleLimit 10 -Authentication domain/admin
}

$queue = [System.Collections.Queue]::Synchronized((New-Object System.Collections.Queue))
$hosts | ForEach-Object { $queue.Enqueue($_) }

while ( $queue.Count -gt 0 -or @(Get-Job -State Running).Count -gt 0 ) {
  $freeSlots = $maxSlots - @(Get-Job -State Running).Count
  for ( $i = $freeSlots; $i -gt 0 -and $queue.Count -gt 0; $i-- ) {
    Start-Job -ScriptBlock $job -ArgumentList $queue.Dequeue() | Out-Null
  }
  Get-Job -State Completed | ForEach-Object {
    Receive-Job -Id $_.Id
    Remove-Job -Id $_.Id
  }
  Sleep -Milliseconds 100
}

# Remove all remaining jobs.
Get-Job | ForEach-Object {
  Receive-Job -Id $_.Id
  Remove-Job -Id $_.Id
}
于 2013-08-12T17:37:05.690 回答