vote up 3 vote down star
2

We are currently using the NetBios method, and it works ok under XP. Preliminary tests under Vista show that it also works, but there are caveats - NetBIOS has to be present, for instance, and from what I've been reading, the order of the adapters is bound to change. Our alternative method - with SNMPExtensionQuery - seems to be broken under Vista.

The question is: do you know of a reliable way to get a list of the local MAC addresses on a Vista machine? Backwards compatibility with XP is a plus (I'd rather have one single method than lots of ugly #ifdef's). Thanks!

flag

4 Answers

vote up 5 vote down check

This will give you a list of all MAC addresses on your computer. It will work with all versions of Windows as well:

void getdMacAddresses(std::vector<std::string> &vMacAddresses;)
{
    vMacAddresses.clear();
    IP_ADAPTER_INFO AdapterInfo[32];       // Allocate information for up to 32 NICs
    DWORD dwBufLen = sizeof(AdapterInfo);  // Save memory size of buffer
    DWORD dwStatus = GetAdaptersInfo(      // Call GetAdapterInfo
    AdapterInfo,                 // [out] buffer to receive data
    &dwBufLen);                  // [in] size of receive data buffer

    //No network card? Other error?
    if(dwStatus != ERROR_SUCCESS)
    	return;

    PIP_ADAPTER_INFO pAdapterInfo = AdapterInfo;
    char szBuffer[512];
    while(pAdapterInfo)
    {
    	if(pAdapterInfo->Type == MIB_IF_TYPE_ETHERNET)
    	{
    		sprintf_s(szBuffer, sizeof(szBuffer), "%.2x-%.2x-%.2x-%.2x-%.2x-%.2x"
    			, pAdapterInfo->Address[0]
    			, pAdapterInfo->Address[1]
    			, pAdapterInfo->Address[2]
    			, pAdapterInfo->Address[3]
    			, pAdapterInfo->Address[4]
    			, pAdapterInfo->Address[5]
    			);
    		vMacAddresses.push_back(szBuffer);
    	}
    	pAdapterInfo = pAdapterInfo->Next;

    }
}
link|flag
Hi Brian, Thanks for the heads-up; in the meantime I found this link (for XP and later); I guess I'll go either for this or for the WMI solution. msdn.microsoft.com/en-us/library/… – Laur Oct 21 '08 at 14:16
We've used this method above in our main products for several years. Works good in Vista, 2008, 2003, XP, 2000, .... – Brian R. Bondy Oct 21 '08 at 14:17
vote up 1 vote down

Could you use the WMIService? I used it to get the mac-address of a machine in pre-Vista days though.

link|flag
Thanks, this seems to be the cleanest solution to my problem. – Laur Oct 21 '08 at 14:07
vote up 0 vote down

You can use WMI on both XP and Vista, there are a number of examples online. e.g: Use Windows Management Instrumentation (WMI) to get a MAC Address

link|flag
vote up 1 vote down

GetAdaptersInfo() is the official method, it enumerates all adapters even ones that are disabled.
See this post for example code codeguru

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.