WinXP tracking IP address method

  
                

When there is a problem with our network, we may have to resolve it by tracking the IP address. In the WinXP system, we may come into contact with many IP addresses. How can we find out the IP addresses that are not used? Today Xiaobian will share a solution with you.

Recommended: WinXP installed generic version download

Solution:

1. Open Notepad, enter the following command in the window:

@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 this file as IPTracker.bat and close the Notepad program.

Note that in this batch file, the entire For…In…Do command consists of several commands that are linked by “&&". The command begins with "For”, ending with "Off”, and the entire command must be on one line. Of course, if the user wants to use this method, the user's own IP address needs to be used to replace the IP address in the example.

In the future, if the user wants to solve the DHCP problem, you can locate and double-click the IPTracker.bat file in the browser window, and then start an IP address tracking tool. This batch only finds those unused IP addresses, and Save the results in a Notepad file. (In this case, the saved batch file becomes an IP address tracking tool, which can be created once and used repeatedly.)

Note: This method is only available for Windows XP Professional (Pro)

The above is a way to find out the unused IP addresses in the WinXP system. Users who are interested or interested can try it on their own computers.

Copyright © Windows knowledge All Rights Reserved