Showing posts with label Batch. Show all posts
Showing posts with label Batch. Show all posts
Creating a batch file for simple ping command to an ip

Creating a batch file for simple ping command to an ip

May 30, 2009
Open a notepad
Copy below text in notepad


echo off
echo.
cls
color 5e
echo.
echo.
echo.
echo.
echo ********** ISDN **********
echo.
echo.
ping 192.168.1.1 -t -l 4
echo.
echo.
echo.
echo.
pause
COLOR
ECHO ON
EXIT

Replace the ip address which you want to ping

This text file save as .bat
(ex: ping.bat )