powershell实现离线ip扫描
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell实现离线ip扫描相关的知识,希望对你有一定的参考价值。
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扫描的主要内容,如果未能解决你的问题,请参考以下文章