yeah, they are for each nic connection...
so i have it reading them, and kicking it to a msg box, and some tenative logic below... but obviously i have some errors when i go to pass it to a the value, and then read the key if a 0 or 1... as well as catching the error if that sub-key (NetbiosOptions) does not exist
$Path = String("HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesNetBTParametersInterfaces")
For $i= 1 to 10
$var = RegEnumKey($Path, $i)
If @error <> 0 then ExitLoop
MsgBox(4096, "Tcpip_{xxx} #" & $i & " under HKLMSYSTEMCurrentControlSetServicesNetBTParametersInterfaces: ", $var)
also not sure on if i need the backtrailing slash for the RegEnumVal:
something like this to get that value (then determine if a 0 --change it, else next) but keeps showing blank so not setting/reading it yet... maybe a missing blackslash i.e. $Path''&$var
$val = RegEnumVal($Path1&$var, "NetbiosOptions")
MsgBox(4096, "testwindows", $val)