1)批量ping

for /l %D in (1,1,255) do (ping 192.168.1.%D -n 1 && echo 192.168.1.%D>>ok.txt || echo 192.168.1.%D >>no.txt)
for /f %D in (ip.txt) do (ping %D -n 1 && echo %i>>ok.txt || echo %D >>no.txt)

相关文章:

  • 2021-11-08
  • 2021-06-28
猜你喜欢
  • 2021-09-07
  • 2022-12-23
  • 2021-09-06
  • 2022-12-23
  • 2021-07-30
相关资源
相似解决方案