How to Ping Multiple IPs at Once in Windows | Single Click Trick Batch File | Trick Multi IP Ping |

Опубликовано: 15 Май 2026
на канале: Technobazi
257
35

Learn how to ping multiple IP addresses in a single click without using any software! 🚀

In this video, I’ll show you a simple and powerful method using a batch file in Windows. This trick is very useful for network monitoring, troubleshooting, and checking multiple devices at once.

🔹 What you’ll learn:
• How to ping multiple IPs at once
• Create a batch file step-by-step
• Run everything in just one click
• No software required (100% free method)

💻 This method works on all Windows versions and is perfect for beginners as well as IT users.

📌 Example use cases:
✔ Check network connectivity
✔ Monitor servers/devices
✔ Save time in daily tasks

👉 If you found this video helpf

Batch script:-

@echo off
for %%i in (
google.com
youtube.com
facebook.com
10.12.1.2
) do (
echo pinging %%i
ping %%i -n 2
)
pause