Click here to Skip to main content
16,016,888 members
Articles / Desktop Programming / ATL

Getting Information from WMI in Visual C++

Rate me:
Please Sign up or sign in to vote.
4.42/5 (30 votes)
27 Sep 2011CPOL3 min read 830.5K   13.2K   72   121
This is an article just to describe how to use WMI with Visual C++ 6. I had to do this for one of my projects and I finally came up with this solution. I hope this will be beneficial to others as well.

Introduction

We normally find a lot of ways and a number of resources to use WMI or to get information from “Windows Management Instrumentation” while using Visual Basic 6 and C#, but I could not find a single resource describing the same thing in Visual C++. MSDN resources are also very limited in this context.

Code

Following is the code on how to get the current processor load from a WMI class Win32_Processor defined in a .mof file. .mof files are managed object files which have a typical way of defining classes and methods.

WMI provides the COM service which is used to connect to the WMI services. The important parts of the code include:

  • bstrNamespace: The initialization of this variable is very tricky. The first three forward slashes //./ represent the Host Computer name from which you want to get information from. A “.” Indicates that information is to be obtained from the same computer on which you are working. You can give any network name here but getting information from the network depends upon your Access Rights, etc. cimv2 is the namespace containing the Win32_Processor class.
  • pIWbemLocator is the argument in which we get the Interface pointer.
  • After that, we call the function ConnectServer of the pIWbemLocator to get a pointer to pWbemServices.
  • WMI uses its own Query Language to get information known as WQL (the acronym for WMI Query Language). So, when calling the function ExecQuery, we have to specify the language as its first argument. Second argument is the Query itself. Last argument is important because here we get a pointer to an Enumeration object through which we can enumerate through the objects available. This enumeration is important because consider the case that we want to know the information about running processes and we are using Win32_Process class for this purpose. Then through this enumeration object, we can go through different processes one by one.
  • By calling the Reset and Next methods of pEnumObject, we are moving through the objects. We get the pointer to an object in pClassObject.
  • The last function through which we get the actual value of a property is Get. We pass a BSTR to this function to get the value in a variant.

The code for getting Processor Load is in a thread which keeps on running and posts message to UI to update the Progress bar. Here is the Thread function.

C++
UINT GetProcessorLoad( LPVOID pParam )
{
	CUsingWMIDlg* dlg = (CUsingWMIDlg*)pParam;
	
	CoInitialize(NULL);

	HRESULT hRes = CoInitializeSecurity( NULL, -1, NULL, 
		NULL, RPC_C_AUTHN_LEVEL_PKT, RPC_C_IMP_LEVEL_IMPERSONATE, NULL,
		EOAC_NONE, 0);

	if(hRes != S_OK) return 0;

	CComPtr<iwbemlocator> pIWbemLocator;
	CComPtr<iwbemservices> pIWbemServices;
	CComPtr<ienumwbemclassobject> pIEnumObject;

	CComBSTR bstrNamespace(_T("root\\cimv2"));

	hRes = pIWbemLocator.CoCreateInstance(CLSID_WbemAdministrativeLocator);
	if(hRes != S_OK) return 0;

	hRes = pIWbemLocator->ConnectServer(bstrNamespace, NULL, 
		NULL, NULL, 0, NULL, NULL, &pIWbemServices);
	if(hRes != S_OK) return 0;

	while(true)
	{
		CComBSTR bstrQuery(_T("Select * from Win32_Processor"));
		CComBSTR bstrQL(_T("WQL"));

		hRes = pIWbemServices->ExecQuery
		(bstrQL, bstrQuery, WBEM_FLAG_RETURN_IMMEDIATELY, NULL, &pIEnumObject);

		ULONG uCount = 1, uReturned;
		CComPtr<iwbemclassobject> pIClassObject;

		hRes = pIEnumObject->Reset();

		hRes = pIEnumObject->Next
		(WBEM_INFINITE, uCount, &pIClassObject, &uReturned);

		if(hRes != S_OK) return 0;

		CComVariant var;

		CComBSTR bstrProp(_T("LoadPercentage"));

		hRes = pIClassObject->Get(bstrProp, 0, &var, NULL, NULL);
		if(hRes != S_OK) return 0;

		int * value = new int(var.lVal);
		dlg->PostMessage(WM_USER+1, (WPARAM) value);
		
		pIEnumObject.Release();
	}
	return 1;
}

Conclusion

This was the shortest method I was able to work out to get information from any WMI class. You can simply change the class name in the Query and Property Name while calling Get method and you will get information from all the classes supported in your OS. I have now tested this code in Windows 7, Windows XP, Win2000, Win2003 and Win2008.

Update

I found out that the code associated with this article was very badly written. After all, I did this when I was a student. Now that I know a tiny bit more, I am updating the code. I have now used Smart Pointers and I have also updated the example App to show the Processor load in a Progress Bar. Furthermore, this is now a Visual Studio 2008 project.
Another fix was to add a lib file in linker settings.

License

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


Written By
Technical Lead
Pakistan Pakistan
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralRe: IP Address Pin
mcxiand15-May-06 20:58
mcxiand15-May-06 20:58 
GeneralRe: IP Address Pin
Orkblutt5-Oct-06 2:32
Orkblutt5-Oct-06 2:32 
Generalunhandled Win32 exception Pin
Ironic26623-Nov-05 21:27
Ironic26623-Nov-05 21:27 
GeneralRe: unhandled Win32 exception Pin
Aamir Butt24-Nov-05 18:45
Aamir Butt24-Nov-05 18:45 
GeneralRe: unhandled Win32 exception Pin
Ironic26626-Nov-05 22:32
Ironic26626-Nov-05 22:32 
GeneralConnect to several namespaces Pin
angelzoo14-Nov-05 2:39
angelzoo14-Nov-05 2:39 
GeneralRe: Connect to several namespaces Pin
Aamir Butt24-Nov-05 18:53
Aamir Butt24-Nov-05 18:53 
GeneralRe: Connect to several namespaces Pin
angelzoo24-Nov-05 22:09
angelzoo24-Nov-05 22:09 
Thanks Aamir,
I think I´ve found the problem. Now it works, but I don´t know if it´s correct. I´m going to explain myself again:
I extract the information in 5 steps:
Step 1: COM initialization
Step 2: Set COM Security level
Step 3: Create IWbemLocator interface
Step 4: Create IWbemServices interface using this Locator (ConnectServer)
Step 5: Set Proxy Security
Extract the desired information using one of the available methods (ExecQuery, GetObject ...)

I want to read information from root/default, root/CIMv2 and root/CIMv2/Applications/MicrosoftIE namespaces. It´s necessary to use the ConnectServer method for every namespace. At this point I got the error I refered in my first post.
To solve this I have tried the following :
When you want to change to another namespace you only have to repeat two steps, 4 and 5:
Step 4:(IWbemLocator::ConnectServer)
hres = pLoc->ConnectServer(bstrNamespace,
bstrUser,
bstrPasswd,
NULL,
NULL, // Security flags.
0, // Authority (e.g. Kerberos)
0, // Context object
&pSvc // pointer to IWbemServices
);
Step 5: ( IWbemLocator::CoSetProxyBlanket)

Both using the same IWbemLocator* interface created previously.

The problem appears in the step 4 (ConnectServer). You can´t send the bstrUser/bstrPasswd again. It´s necesary for the first time (root/default), but the second (root/cimv2) and subsequent you have to change these parameters to NULL/NULL:

hres = pLoc->ConnectServer(bstrNamespace,
NULL,
NULL,
NULL,
NULL, // Security flags.
0, // Authority (e.g. Kerberos)
0, // Context object
&pSvc // pointer to IWbemServices
);

It works fine in this way.
Do you know a correct way to do this?

Thanks in advance for your time
AngelM
QuestionMissing CoInitializeSecurity? Pin
tikcireviva27-Sep-05 0:34
tikcireviva27-Sep-05 0:34 
AnswerRe: Missing CoInitializeSecurity? Pin
Aamir Butt24-Nov-05 18:55
Aamir Butt24-Nov-05 18:55 
GeneralRe: Missing CoInitializeSecurity? Pin
viperlogic27-Feb-06 9:50
viperlogic27-Feb-06 9:50 
AnswerRe: Missing CoInitializeSecurity? Pin
xiaozhijian11-Jan-06 20:44
xiaozhijian11-Jan-06 20:44 
GeneralRe: Missing CoInitializeSecurity? Pin
Zenith6315-Jul-07 9:17
Zenith6315-Jul-07 9:17 
GeneralRe: Missing CoInitializeSecurity? Pin
Member 376488919-Jul-11 18:14
Member 376488919-Jul-11 18:14 
Questionhow to connect romote host Pin
wesley424812-May-05 15:36
wesley424812-May-05 15:36 
AnswerRe: how to connect romote host Pin
Aamir Butt24-Nov-05 19:01
Aamir Butt24-Nov-05 19:01 
Generalwbemuuid.lib - CoCreateInstance problem Pin
viswanath_jntu9-Mar-05 19:13
viswanath_jntu9-Mar-05 19:13 
GeneralRe: wbemuuid.lib - CoCreateInstance problem Pin
Peter Beecken18-Nov-05 2:44
Peter Beecken18-Nov-05 2:44 
GeneralRe: wbemuuid.lib - CoCreateInstance problem Pin
JNygren11-Apr-07 5:37
JNygren11-Apr-07 5:37 
GeneralRe: wbemuuid.lib - CoCreateInstance problem Pin
pilixuanke8-May-07 3:09
pilixuanke8-May-07 3:09 
Generalwbemuuid.lib - error :object file corrupted Pin
viswanath_jntu9-Mar-05 18:06
viswanath_jntu9-Mar-05 18:06 
GeneralWin32_OperatingSystem Pin
Stefak7-Mar-05 6:10
Stefak7-Mar-05 6:10 
GeneralRe: Win32_OperatingSystem Pin
smartceo6-Jun-07 20:05
smartceo6-Jun-07 20:05 
GeneralRe: Win32_OperatingSystem Pin
don_francc15-Sep-10 19:32
don_francc15-Sep-10 19:32 
Generalwin2k error!!! Pin
iicastle30-Jan-05 22:07
iicastle30-Jan-05 22:07 

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

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