No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
7 Posted Topics
my goal is to develop a workflow modeling web application can you give me some pointers on some usefull libraries Using ASP .NET Webforms with c# | |
the code is the following : BSTR MethodName = SysAllocString(L"DefragAnalysis"); BSTR ClassName = SysAllocString(L"Win32_Volume"); IWbemClassObject* pClass = NULL; hres = pSvc-> GetObject (ClassName, 0, 0, &pClass, 0); IEnumWbemClassObject* pEnumerator = NULL; hres = pSvc-> ExecQuery ( bstr_t ("WQL"), bstr_t ("SELECT * FROM Win32_Volume"), WBEM_FLAG_FORWARD_ONLY | WBEM_FLAG_RETURN_IMMEDIATELY, NULL, &pEnumerator); IWbemClassObject *pclsObj; … | |
I need to monitor disk, to know how much data is being written on my disk per day. I came across "**Win32_PerfFormattedData_PerfDisk_PhysicalDisk**" Class.But the problem is that returns different values among them 0 values.My questions are -why these values keep changing? -i got 2 instances from this Class and i … | |
i am trying to vendor specifc attribute from this WMI class MSStorageDriver_FailurePredictData(HDD SMART information). Here is the used code : IEnumWbemClassObject* pEnumerator = NULL; hres = pSvc->ExecQuery( L"WQL", L"SELECT * FROM MSStorageDriver_FailurePredictData", WBEM_FLAG_FORWARD_ONLY | WBEM_FLAG_RETURN_IMMEDIATELY, NULL, &pEnumerator); IWbemClassObject *pclsObj = NULL; ULONG uReturn = 0; while (pEnumerator) { HRESULT hr … | |
I am having trouble reading uint ARRAYS properties from WMI objects. I can read and process STRING properties from WMI objects. | |
can anyone explain to me the realation between these classes * Win32_DiskDrive * Win32_LogicalDisk * Win32_Volume * Win32_DiskPartition | |
How can i measure sequential read/write speeds? is there any API, library that can help me? |
The End.