码迷,mamicode.com
首页 > 系统相关 > 详细

powershell实现离线ip扫描

时间:2017-07-07 11:39:41      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:分享   else   for   ++   效果   在线   null   .com   blog   

1.实现方式

powershell

ps:shell也同样可以实现

 

2.脚本

$ip = "192.168.50."
for ($i = 1; $i -lt 255; $i ++) {
# get each ip
$cur = $ip + $i
# ping once 
ping -n 1 $cur | Out-Null
if ($LASTEXITCODE -eq 0) {
Write-Host "$cur 在线"
} else {
Write-Host "$cur 离线"
}
}

3.执行效果

技术分享

 

powershell实现离线ip扫描

标签:分享   else   for   ++   效果   在线   null   .com   blog   

原文地址:http://www.cnblogs.com/AlexGQ/p/7131100.html

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