Here's what I came up with (Win7 64 bit):
var query = new SelectQuery("Win32_NetworkAdapter");
var scope = new ManagementScope("\\root\\cimv2");
scope.Connect();
var searcher = new ManagementObjectSearcher(scope, query);
var managementObjects = searcher.Get();
foreach (var mo in managementObjects)
{
Debug.WriteLine("{0} : {1}", mo["Description"], mo["MACAddress"]);
}
My bluetooth adapter looks like this:
Bluetooth Device (Personal Area Network) : 70:F3:95:88:F7:7E
However, when its disabled, the MAC Address shows up as blank.
You should be able to Enable/Disable the adapters to query the MAC via methods on the class, but its a bit of a chore as you manually have to wrap the Win32_NetworkAdapter class.
You need to generate a class wrapper for the WMI object using the .Net Framework SDK tool 'mgmtclassgen.exe'
Invoke it like this (the generated file is 80k):
mgmtclassgen Win32_NetworkAdapter -p NetworkAdapter.cs
Then augment the code like so:
var query = new SelectQuery("Win32_NetworkAdapter");
var scope = new ManagementScope("\\root\\cimv2");
scope.Connect();
var searcher = new ManagementObjectSearcher(scope, query);
var managementObjects = searcher.Get();
var adapters = managementObjects.Cast<ManagementBaseObject>().Select(s => new NetworkAdapter(s));
foreach (var adapter in adapters)
{
adapter.Enable();
Console.WriteLine("{0} : {1}", adapter.Name, adapter.MACAddress);
}
But I couldn't get it to work as nothing happened when I called Enable() and the return code was 0. I posted it in the hopes that you or someone might deduce the missing detail that will allow it to work.