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 | Ou 阅读全文
posted @ 2017-07-07 11:04 alexgq 阅读(227) 评论(0) 推荐(0) 编辑