S
Steve
Hi
Is there any way to know all IP addresses of my network ?
Thanks
Steve
Is there any way to know all IP addresses of my network ?
Thanks
Steve
Steve said:Hi
Is there any way to know all IP addresses of my network ?
Thanks
Steve
-----Original Message-----
Yes - by pinging each of them:
@echo off
if exist c:\Address.txt del c:\Address.txt
for /L %%a in (1,1,254) do ping 192.168.0.%%a -n 1 |
find /i "bytes=" > nul && echo 192.168.0.%%a >> c:\Address.txt
(unwrap line)
Steve said:Thanks Pagasus
Do I have to write in the same line at the command prompt
all the command line you gave?:
@echo off
if exist c:\Address.txt del c:\Address.txt
for /L %%a in (1,1,254) do ping 192.168.0.%%a -n 1 |
find /i "bytes=" > nul && echo 192.168.0.%%a >>
c:\Address.txt
Thanks
Steve
-----Original Message-----
It might be easier to download a port scanner. Many give you the
functionality of pinging a range of IP addresses to determine if there is a
live host.
.
Try the Look@lan utility. It's free, ask any browser.