IP address

  • Thread starter Thread starter *ProteanThread*
  • Start date Start date
http://bluefive.pair.com/ipaddress.htm

It's a tiny utility that checks your IP address and lets you copy it
to the computer's Clipboard. You can then paste it from there into
whatever application or document that requires it. Possibility to
e-mail.

A small suite of tools for Ping, Tracert, and NSLookup is:

TJPing http://www.topjimmy.net/tjs/



--
+++++++++++++++++++++++++++++++
El Gee <><
Know Christ, Know Peace
No Christ, No Peace

Remove yourhat to reply
Home Page - www.mistergeek.com
Blog - mcwtlg.blogger.com
+++++++++++++++++++++++++++++++
 
421k install for a 102k utility; and even that is a bit much for such little
functionality.
Don't need another program
ipconfig is handy enough for me :-)

Neither this program, nor ipconfig, will tell you your true IP if you are doing
nat. Something like this script (call it with a batch file such as "cscript
//nologo myip.vbs") will do this in 600 bytes. (or just load whatismyip.com into
your browser.)

Option Explicit
Dim xml, RE, Matches, Match
Set xml = CreateObject("Microsoft.XMLHTTP")

Set RE = New regexp
RE.Pattern = "(\d{1,3}.){3}\d{1,3}"
RE.Global = false

Do
xml.Open "GET", "http://www.whatismyip.com/", False
xml.Send
Set Matches = RE.Execute(xml.responseText)
For Each Match in Matches
wscript.echo Match.Value
Next
wscript.sleep 30000
Loop


jw
 
Back
Top