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

在前一个技能中我们演示了如何用 WMI 快速 ping 多台计算机,它的语法比较另类。那么让我们重写代码,使得指定要 ping 的计算机列表变得更容易:

1
2
3
4
5
6
7
8
# ping the specified servers with a given timeout (milliseconds)
$ComputerName = 'google.de','microsoft.com','r13-c00'
$TimeoutMillisec = 1000

# convert list of computers into a WMI query string
$query = $ComputerName -join "' or Address='"

Get-WmiObject -Class Win32_PingStatus -Filter "(Address='$query') and timeout=$TimeoutMillisec" | Select-Object -Property Address, StatusCode

现在要 ping 更大量的计算机变得更容易:只要将它们加入 $ComputerName 字符串数组。假如有一个文本文件,每行是一个计算机名,您也可以用 Get-Content 来写入 $ComputerName 变量。

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

http://blog.vichamp.com/2018/02/19/creating-highspeed-ping-part-3/

作者

吴波

发布于

2018-02-19

更新于

2022-07-06

许可协议

评论