I found another issue in interface_windows.go: The interfaceAddrTable returns Interfaces that are not active. Need to implement the follow code after for ; paddr != nil; paddr = paddr.Next { ... (line 156):
if paddr.OperStatus == windows.IfOperStatusUp {
...
}
This will exclude inactive interfaces.