PowerShell 技能连载 - 创建快速的 Ping(第二部分)

在前一个技能中我们演示了如何用 WMI 以指定的超时值 ping 计算机。WMI 还可以做更多的事:它可以迅速 ping 多台计算机,不过语法有一点另类。

以下是如何 ping 多台计算机:

1
2
3
4
# ping the specified servers with a given timeout (milliseconds)
$TimeoutMillisec = 1000

Get-WmiObject -Class Win32_PingStatus -Filter "(Address='microsoft.com' or Address='r13-c14' or Address='google.com') and timeout=$TimeoutMillisec" | Select-Object -Property Address, StatusCode

PowerShell 技能连载 - 创建快速的 Ping(第二部分)

http://blog.vichamp.com/2018/02/16/creating-highspeed-ping-part-2/

作者

吴波

发布于

2018-02-16

更新于

2022-07-06

许可协议

评论