any app for displaying my ip address in a pop-up window ?

  • Thread starter Thread starter Stensgaard_Fan
  • Start date Start date
S

Stensgaard_Fan

I've no static ip address on my network but would like to remotly control
my second PC without fist going to its desktop and hovering over the
taskbar to read the current ip number - anything that I could add to the
startup folder that would display it would be ideal.

TIA,

James.
 
Save as IP.vbs file

----------- no copy -----------

strComputer = "."
Set objWMIService = GetObject("winmgmts:" _
& "{impersonationLevel=impersonate}!\\" & strComputer &
"\root\cimv2")

Set IPConfigSet = objWMIService.ExecQuery _
("Select * from Win32_NetworkAdapterConfiguration Where
IPEnabled=TRUE")

For Each IPConfig in IPConfigSet
If Not IsNull(IPConfig.IPAddress) Then
For i=LBound(IPConfig.IPAddress) to UBound(IPConfig.IPAddress)
WScript.Echo IPConfig.IPAddress(i)
Next
End If
Next

------------- no copy --------------
 
Save as IP.vbs file

----------- no copy -----------

strComputer = "."
Set objWMIService = GetObject("winmgmts:" _
& "{impersonationLevel=impersonate}!\\" & strComputer &
"\root\cimv2")

Set IPConfigSet = objWMIService.ExecQuery _
("Select * from Win32_NetworkAdapterConfiguration Where
IPEnabled=TRUE")

For Each IPConfig in IPConfigSet
If Not IsNull(IPConfig.IPAddress) Then
For i=LBound(IPConfig.IPAddress) to UBound(IPConfig.IPAddress)
WScript.Echo IPConfig.IPAddress(i)
Next
End If
Next

------------- no copy --------------




thanks (I'm not sure what to do with that though).


I have found/tried this freeware one wich does the job,


http://keir.net/ip2.html


James.
 
I've no static ip address on my network but would like to remotly control
my second PC without fist going to its desktop and hovering over the
taskbar to read the current ip number - anything that I could add to the
startup folder that would display it would be ideal.

1) If it's your network, give the computer a static IP.

2) <http://www.no-ip.com/>
 
I can't find the link at the moment, however I use a program called
Cane.. I'm away from home where I have it saved, but it's Cane Systems
from memory, it will even show the login username and password for MSN
messenger for anyone presently logged in while they are logged in..
maybe other chat programs etc as well ... but thats the only program
used by a family memeber here and I was shocked to find the information
displayed..
 
Back
Top