How to ping multiple ip addresses from cmd prompt

preview_player
Показать описание
How to ping multiple ip addresses from cmd prompt

for /l %i in (1,1,254) do @ping 192.168.1.%i -n 1 -w 100 | find "Reply"
Рекомендации по теме
Комментарии
Автор

for /l %i in (1, 1, 254) do @ping 192.168.1.%i -n 1 -w 100 | find "Reply"

sutharpushkar
Автор

damn, took me a while to realize to adapt "Reply" to my system language :D works great thx <3

johnobdy
Автор

I did not understand a thing he said, but the video was clear enough and I found what I needed. Like.

raulferro
Автор

PERFECT!!! Thank you. You save me many hours.

michael
Автор

title in english, but speaking in different language ..very good (Y)

Rsilaz
Автор

And for the people that say this ain't working for them, I think you should go and learn some networking basics and once you are clear this command will work wonders.

raulferro
Автор

Can't see and or understand the command line you use. It would great if it was in the comments.

PizzaFace
Автор

Not working, share the command Please.

dipanshukulshrestha
Автор

Hello bro ek kaam kro jo aap ne command diya h usko description me bhi likh do hume aasani hogi

NetworkTechnology
Автор

when i run
for /L %z in (1, 1, 254) do @ping 192.168.1.%z -w 10 -n 1 | find "Reply"
i get FIND: Parameter format not correct

daviddsoniaa