PowerShell 技能连载 - 创建快速的 Ping(第三部分)
在前一个技能中我们演示了如何用 WMI 快速 ping 多台计算机,它的语法比较另类。那么让我们重写代码,使得指定要 ping 的计算机列表变得更容易:
1 | # ping the specified servers with a given timeout (milliseconds) |
现在要 ping 更大量的计算机变得更容易:只要将它们加入 $ComputerName
字符串数组。假如有一个文本文件,每行是一个计算机名,您也可以用 Get-Content
来写入 $ComputerName
变量。
PowerShell 技能连载 - 创建快速的 Ping(第三部分)
http://blog.vichamp.com/2018/02/19/creating-highspeed-ping-part-3/