Click here to Skip to main content
Licence CPOL
First Posted 24 Aug 2007
Views 17,960
Downloads 291
Bookmarked 8 times

Exploring Network Configuration with the INetCfg COM Interface

By | 24 Aug 2007 | Article
Getting information about installed network drivers on a PC.

Screenshot - Driver_Found.jpg

Introduction

To get information about the installed network devices, the COM interface INetCfg and some other interfaces can be used.

Background

My problem was to prove that a special driver is available on a PC. For that, I looked at the snetcfg.exe sample from Microsoft, but it didn't work for me. So, I explored the code and found that it used the INetCfg COM interface. But, I didn't find good documented code at all, so I made myself a class.

Using the Code

For using the code, it is essential to have the SDK and the DDK (or WDK) from Microsoft to have all the files installed and the right paths set so all the files can be found. I have made remarks on the most important areas:

//DDK/WDK
#include <Netcfgx.h>
#include <comdef.h>
//Platform SDK
#include <devguid.h>

Before using it, you got to create the internal COM objects. If it doesn't work, may be COM errors can help you.

//Creating the COM-instance
m_NetCfg.Init( L"Codeproject Sample", false );

My final use:

is to check whether a driver can be accessed via the COM interfaces:

HRESULT hr = m_NetCfg.FindComponentDisplayName( bs, csDisplay );
if( IS_OK( hr ) )
{
    cs.Format( "Driver found. Displayname is %s", csDisplay );
}
else
{
    cs.Format( "Error in NetCfg. COM-Message: %s", m_NetCfg.GetLastErrorMessage() );
}

In the error part, you can see my error text function used to enhance usability.

Points of Interest

It was fun to see COM work for me as I wrote the code. Because I didn't find much at CP about INetCfg, I decided to publish this article. I hope it helps, as I have often found help here.

History

  • 1.0: 23 Aug., 2007: Initial release.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

KarstenK

Software Developer

Germany Germany

Member

I am living in germany and now living from programming for some Years. In my spare time I like sports as jogging, playing football (soccer) and basketball.
 
We must take care for our planet, because we and our family has no other. And everybody has to do something for it.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralMy vote of 1 Pinmemberdxlee3:56 6 Oct '09  
GeneralHard stuff, INetCfg! PinmemberIain Clarke0:12 30 Sep '08  
GeneralRe: Hard stuff, INetCfg! PinmemberKarstenK0:57 30 Sep '08  
GeneralRe: Hard stuff, INetCfg! PinmemberIain Clarke1:16 30 Sep '08  
GeneralHi Pinmemberiknownoone9:19 22 Oct '07  
GeneralRe: Hi PinmemberKarstenK20:41 22 Oct '07  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120517.1 | Last Updated 24 Aug 2007
Article Copyright 2007 by KarstenK
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid