检查计算机是否在线,如果是,请回显“$ Computername is online”脚本

时间:2018-05-03 17:10:47

标签: powershell

让我作为序言,我是powershell的新手。我真的只需要掌握语法,我就没事了。

基本上,我希望这个脚本解析我所拥有的computers.txt文件,列出了以逗号分隔的机器

$computernames = Get-Content -Path "c:\scripts\computers.txt"

不确定这是否可能会格式化,也许我需要将Get-ChildItem放在某处,以使其显示在每个项目的循环中。

我需要把它放在一个for循环中,然后让每台机器ping一次,如果有成功的响应,我需要它回显“Computername is online”,直到它到达txt文件的末尾。

我认为powershell中的ping是Test-Connection。感谢任何帮助,谢谢!

0 个答案:

没有答案