并行运行多个脚本

时间:2015-09-08 07:35:18

标签: powershell-v2.0

我被困在以下任务中:

我有5个需要并行执行的PowerShell脚本。我想创建一个home.ps1,同时调用其他test1.ps1test2.ps1test3.ps1test4.ps1test5.ps1

1 个答案:

答案 0 :(得分:0)

您可以使用jobs

$scripts = 'test1.ps1', 'test2.ps1', 'test3.ps1', 'test4.ps1', 'test5.ps1'

$scripts | ForEach-Object {
  Start-Job -FilePath $_
} | Wait-Job | Receive-Job

More information