I can't find a native Autoit function to list the local IP addresses (I  could swear it exists) so looking to find a way to do this. Choosing to work with objects here is the start of what I have as powershell. get-wmiobject win32_networkadapterconfiguration | where ipenabled -eq "True" | Select IPAddressThis leaves me with a list of valid local addresses, but not just my IPV4 I need to probably regex this to only list the IPV4 addresses and then put them into an array. Can somebody help me lear