码迷,mamicode.com
首页 > 其他好文 > 详细

查询指定网段Ping通的IP和主机名

时间:2015-01-15 16:19:04      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:powershell   ip   address   主机   users   

$path="C:\Users\username\Desktop\"
$ping = New-Object system.net.networkinformation.ping 
70..80 | % {$ping.send("10.0.9.$_") | select address,status} | out-file -filepath "$path ping.txt"
$IP= Get-Content "$path ping.txt" |Where-Object {$_ -match "Success"}
$IPS= -split $IP |Where-Object {$_ -like "10*"}
$hostname=foreach ($i in $IPS) { [System.Net.DNS]::GetHostByAddress($i).HostName;$i}
$hostname

技术分享

查询指定网段Ping通的IP和主机名

标签:powershell   ip   address   主机   users   

原文地址:http://simondu.blog.51cto.com/754321/1604346

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!