I would like to ping multiple IP address simultaneously in separate windows. Kindly help ASAP.
Email: <removed>@ibyemen.com
edited by moderator: Removed email address -Razor2.3
Open multiple command prompts and type in the appropriate command in each.
you can save all IP addresses in a .txt file anywhere such as C:\ip.txt and use this command: "replace %%e to %e in command prompt or just copy and paste this one into .bat file then run it"
=============================================================
for /f "tokens=* delims== " %%e in (C:\ip.txt) do (
start ping %%e -n 10
)
=============================================================
N.B: the ip addresses must be in a sequence one by one under each other such as:
192.168.1.xxx
192.168.0.xxx
if you can not understand let me explain more and sorry for my bad language
Yes (14) | ![]() | |
No (14) | ![]() | |
I don't know (15) | ![]() |