6/23/07

Find All the IP's on your Network

1. Launch Notepad and type the following commands:

@Echo off
date /t > IPList.txt
time /t >> IPList.txt
echo =========== >> IPList.txt
For /L %%f in (1,1,100) Do Ping.exe -n 2 192.168.1.%%f | Find
"Request timed out." && echo 192.168.1.%%f Timed Out >>
IPList.txt && echo off
cls
Echo Finished!
@Echo on
Notepad.exe IPList.txt

2. Save the file as IPTracker.bat and close Notepad.
then run this bat file in the run command.


Another command that can be done is copying the following link into DOS:

For /L %f in (1,1,100) Do Ping.exe -n 2 192.168.1.%f