Monday, December 6, 2010

Ping sweeper - batch script

This simple ping sweeper to a giving range of IP..


@echo off  
cls
@color 0A  
echo  
echo *************************  
echo *  @pih ping sweeper    *  
echo *************************    
echo.       
for /l %%a in (1,1,255) do (  
ping -n 1 10.19.127.%%a | find "Reply" 

Simply copy and paste in notepad & save it as ping_sweeper.bat


0 comments:

Post a Comment