Jump to content

getting ip address


Recommended Posts

i tried using getip() but that gets our public ip.

so im trying to get internal ip.. but having trouble with stringregexp

its not returning the right $line

$ifile = (@TempDir & "\ip.txt")
RunWait(@ComSpec & " /c ipconfig > " & $ifile)

$line = StringRegExp($ifile, "IP Address")

MsgBox(0, "", $line)

$ip = StringSplit($line, ": ")

If @error Then
MsgBox(0, "Error", "Could not obtain IP")
EndIf

$mIP = StringSplit($ip[24], ".")
$myIP = $mIP[1] & "." & $mIP[2]
    
MsgBox(0, "", $myIP)

or can any of you think of a better way to do this?

Edited by gcue
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...