As a workaround, I think the native KiXtart function EnumIPInfo() can also do the trick:
 Code:
Dim $n
$n = 0
While Not @ERROR
	? EnumIPInfo($n, 0, 1)
	$n = $n + 1
Loop

If the third parameter, mode, is set to 1, the current IP information is retrieved from the system.