you might be able to use a vp script to get the information for you ..
try:
-- start file getIP.vbs --
On Error Resume Next
strComputer = "client1"
Set objWMIService = GetObject("winmgmts:" _
& "{impersonationLevel=imper
Set colNicConfigs = objWMIService.ExecQuery _
("SELECT * FROM Win32_NetworkAdapterConfig
WScript.Echo VbCrLf & "Computer Name: " & strComputer
WScript.Echo " IP Addresses & Subnet Masks"
For Each objNicConfig In colNicConfigs
WScript.Echo VbCrLf & " Network Adapter " & objNicConfig.Index
WScript.Echo " " & objNicConfig.Description & VbCrLf
WScript.Echo " IP Address(es):"
For Each strIPAddress In objNicConfig.IPAddress
WScript.Echo " " & strIPAddress
Next
WScript.Echo " Subnet Mask(s):"
For Each strIPSubnet In objNicConfig.IPSubnet
WScript.Echo " " & strIPSubnet
Next
Next
-- end file --
see if that works on your local machine to display the IP addresss of the computer.. then what you might be able to do i just have that run on the machine with the logon scripts, and it'll popup a window with the information..
Main Topics
Browse All Topics





by: katacombzPosted on 2004-10-21 at 07:00:54ID: 12369999
how about putting this into a batch file adn placing it on the users desktops
##############
ipconfig /all
pause
###########
then if you are working with a user and ned thier IP have them click the batch file and read what comes up, and no need to purchase more software.