gpt4 book ai didi

multithreading - 如何多线程 PowerShell Ping 脚本

转载 作者:行者123 更新时间:2023-12-04 06:46:11 26 4
gpt4 key购买 nike

我最近完成了一个脚本来 ping 列表中的每台计算机/工作站并以一种很好的格式输出它。

有数千台计算机要 ping 下一个列表,因此需要一段时间才能正常运行。我如何能够多线程处理,以便在合理的时间范围内完成工作?

最佳答案

workflow Ping
{
param($computers)

foreach -parallel ($computer in $computers)
{
$status = Test-Connection -ComputerName $computer -Count 1 -Quiet

if (!$status)
{ Write-Output "Could not ping $computer" }
}
}

$computers = @(
"wd1600023",
"sleipnir"
)

Ping $computers

关于multithreading - 如何多线程 PowerShell Ping 脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37954004/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com