Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using WMI (Win32_NetworkAdapter) and trying to get the details of attached physical network adapters either wired or wireless and avoid virtual adapters, etc.

Reading this article it explains that you have to do some clever querying on WMI to eliminate virtual adapters and attempt to only return real physical adapters.

Reading this post it explains that you can compare the text in the "Description" of the network adapter to see if it includes "Wireless", "802.11", or "WLAN", if it does, then most likely the adapter is a wireless adapter.

With today's .Net versions and other advancements, are these really the only two ways of determining on Windows XP+ if a network adapter is wired or wireless and is not a virtual adapter from VM software or the like? If not, please explain.

share|improve this question
Are you only looking for solutions that involve WMI? – M.Babcock Apr 11 '12 at 22:06
Preferably, yes. My existing project uses WMI with .Net quite extensively to get adapter information as it sits. If there are other options, I'd like to know but unsure if I will implement. – ScottN Apr 11 '12 at 22:18
Using WMI couldn't you just filter based on the Win32_NetworkAdapter.PhysicalAdapter (should be false if the interface is virtual) and then use the AdapterTypeID to determine if it is wired or wireless? I skimmed the article you posted and their criteria unreasonable. – M.Babcock Apr 11 '12 at 22:40
msdn.microsoft.com/en-us/library/windows/desktop/… Win32_NetworkAdapter.PhysicalAdapter Windows Server 2003, Windows XP, Windows 2000, and Windows NT 4.0: This property is not available. AdapterTypeID is not reliable as I have my laptop here and WMI returns it as non-wireless. – ScottN Apr 12 '12 at 18:59

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.