1

我想获取计算机上所有分区的系统驱动器号,除了活动分区,使用WMI,这是我到目前为止想出的(我不知道如何获取驱动器号以及如何检查它们是否都是 HDD 或系统驱动器,所以我在这里没有任何 CD-ROM):

 std::vector<CString> GetPartitionsVector(bool bCoInit   = false  )
{
    std::vector<CString> partVect;
    HRESULT hres = NULL;
    if(bCoInit)
    {

        hres =  CoInitializeEx(0, COINIT_MULTITHREADED); 
        if (FAILED(hres))
        {
            goto end_routine;
        }

        hres =  CoInitializeSecurity(
            NULL, 
            -1,                          // COM authentication
            NULL,                        // Authentication services
            NULL,                        // Reserved
            RPC_C_AUTHN_LEVEL_DEFAULT,   // Default authentication 
            RPC_C_IMP_LEVEL_IMPERSONATE, // Default Impersonation  
            NULL,                        // Authentication info
            EOAC_NONE,                   // Additional capabilities 
            NULL                         // Reserved
            );


        if (FAILED(hres))
        {
            goto end_routine;
        }
    }


    IWbemLocator *pLoc = NULL;

    hres = CoCreateInstance(
        CLSID_WbemLocator,             
        0, 
        CLSCTX_INPROC_SERVER, 
        IID_IWbemLocator, (LPVOID *) &pLoc);

    if (FAILED(hres))
    {
        goto end_routine;
    }


    IWbemServices *pSvc = NULL;

    hres = pLoc->ConnectServer(
        _bstr_t(L"ROOT\\CIMV2"), // Object path of WMI namespace
        NULL,                    // User name. NULL = current user
        NULL,                    // User password. NULL = current
        0,                       // Locale. NULL indicates current
        NULL,                    // Security flags.
        0,                       // Authority (e.g. Kerberos)
        0,                       // Context object 
        &pSvc                    // pointer to IWbemServices proxy
        );

    if (FAILED(hres))
    {
        goto end_routine;
    }

    hres = CoSetProxyBlanket(
        pSvc,                        // Indicates the proxy to set
        RPC_C_AUTHN_WINNT,           // RPC_C_AUTHN_xxx
        RPC_C_AUTHZ_NONE,            // RPC_C_AUTHZ_xxx
        NULL,                        // Server principal name 
        RPC_C_AUTHN_LEVEL_CALL,      // RPC_C_AUTHN_LEVEL_xxx 
        RPC_C_IMP_LEVEL_IMPERSONATE, // RPC_C_IMP_LEVEL_xxx
        NULL,                        // client identity
        EOAC_NONE                    // proxy capabilities 
        );

    if (FAILED(hres))
    {
        goto end_routine;
    }

    // Step 6: --------------------------------------------------
    // Use the IWbemServices pointer to make requests of WMI ----

    // For example, get the name of the operating system
    IEnumWbemClassObject* pEnumerator = NULL;
    hres = pSvc->ExecQuery(
        bstr_t("WQL"), 
        bstr_t("SELECT * FROM Win32_DiskPartition"),                // Win32_DiskPartition
        WBEM_FLAG_FORWARD_ONLY | WBEM_FLAG_RETURN_IMMEDIATELY, 
        NULL,
        &pEnumerator);

    if (FAILED(hres))
    {
        pSvc->Release();
        pLoc->Release();

        goto end_routine;
    }

    // Step 7: -------------------------------------------------
    // Get the data from the query in step 6 -------------------

    IWbemClassObject *pclsObj;
    ULONG uReturn = 0;

    while (pEnumerator)
    {
        HRESULT hr = pEnumerator->Next(WBEM_INFINITE, 1, 
            &pclsObj, &uReturn);

        if(0 == uReturn)
        {
            break;
        }

        VARIANT vtProp;

        // Get the value of the Name property
        hr = pclsObj->Get(L"BootPartition", 0, &vtProp, 0, 0);

        if(!vtProp.boolVal)     //if this is not boot partition, get some more
        {
            hr = pclsObj->Get(L"BootPartition", 0, &vtProp, 0, 0);
            if(FAILED(hr))
            {
                //log here
            }
            hr = pclsObj->Get(L"SystemName", 0, &vtProp, 0, 0);
          if(!FAILED(hr))
              partVect.push_back(vtProp.bstrVal);
        }




        VariantClear(&vtProp);
        pclsObj->Release();
    }

    // Cleanup
    // ========

    pSvc->Release();
    pLoc->Release();
    pEnumerator->Release();



end_routine:

    if(bCoInit)
    {
        CoUninitialize();
    }
    return partVect;
}
4

1 回答 1

1

要将Win32_DiskPartitionWMI 类返回的分区列表与驱动程序号(逻辑磁盘)相关联,您必须按照此顺序使用。

  1. 首先调用Win32_DiskDrive
  2. 然后查询所有Win32_DiskPartition使用该DeviceID属性和Win32_DiskDriveToDiskPartition关联类的实例。
  3. 现在使用属性和关联类调用Win32_LogicalDisk表示分区的 WMI类。Win32_DiskPartition.DeviceIDWin32_LogicalDiskToPartition
  4. Win32_LogicalDisk.DeviceID最后,您可以从属性中获取驱动器号。

这里有一组关于如何使用ASSOCIATORS OFWMI 语句的示例。

于 2013-10-14T02:35:19.080 回答