|
Question : Network user Ip address..
|
|
I have a list of 100 user accounts currently logged on to diffirent computers, my question is.
anyone knows any way i can know their ip addresses . I dont want to use the DHCP as it will show me all the ranges.
thanks
|
Answer : Network user Ip address..
|
|
Further to ecszone's comment, you could add the following to your logon script
echo %computername% > c:\%computername%.txt echo %username% >> c:\%computername%.txt ipconfig >> c:\%computername%.txt copy c:\%computername%.txt \\server\share$ /y
As long as you give world writeable access to \\server\share$ you will quickly end up with a series of files that have the username, computername and ip address in them for each computer.
al.
|
|
|