ja its pretty basic, here's a quick example using your situation:

Code:

break on

$index = 0

$key = enumkey("HKLM\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters\Interfaces", $index)

while $key

?"key=" $key

$index = $index + 1

$key = enumkey("HKLM\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters\Interfaces", $index)

loop

exit 0