How do I find MAC address (hardware address) of Bluetooth network interface in Windows? The problem is not to find out an address, the problem is to identify if network interface type is Bluetooth.
Both approaches I tried does not distinguish between ethernet card and bluetooth (at least I don't see a difference) - GetAdaptersAddresses
returns bluetooth interface as IF_TYPE_ETHERNET_CSMACD
and WMI
as AdapterTypeID
of Ethernet 802.3
(same as WiFi, eventhough Wireless type exists).
Only possibility I currently see is to search a name or description string for text "bluetooth" but this does not seem as OK solution ;-)