I have just the thing!
I got a script courtesy of another member a while back to tell me information about DNS/Hostname/IP/Subnet/Gateway.
I have edited this script to give you exactly what you need.
Just paste the following into notepad, and save it as a .vbs file (VB Script) then when you double click, a popup will show up telling you the IP address:
strComputer = "."
Set objWMIService = GetObject("winmgmts:" _
& "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")
Set colAdapters = objWMIService.ExecQuery _
("SELECT * FROM Win32_NetworkAdapterConfiguration WHERE IPEnabled = True")
n = 1
For Each objAdapter in colAdapters
If Not IsNull(objAdapter.IPAddress) Then
For i = 0 To UBound(objAdapter.IPAddress)
WScript.Echo " Your Local IP address is: " & objAdapter.IPAddress(i)
Next
End If
n = n + 1
Next
Function WMIDateStringToDate(utcDate)
WMIDateStringToDate = CDate(Mid(utcDate, 5, 2) & "/" & _
Mid(utcDate, 7, 2) & "/" & _
Left(utcDate, 4) & " " & _
Mid (utcDate, 9, 2) & ":" & _
Mid(utcDate, 11, 2) & ":" & _
Mid(utcDate, 13, 2))
End Function
Hope that helps.
'When all else fails.......read the manual'