2

このページを見つけましたが、そこから有用な情報を取得できませんでした (レジストリで何かを検索しますが、見つからず、無限ループに陥ります)。

モニターのシリアル UID (「EDID 情報」) の取得に関するこの質問では、Linux ではなくWin32 C コード (または C/C++ DDKコードなど)の観点から同じ情報が必要です。

4

3 に答える 3

3

WMI は、Windows XP のモニター クラスをサポートしていませんでした。EDID を取得する文書化された方法は、Setup API を使用したものであり、現在も使用されています。

詳細な調査と VC++ コード サンプルは、こちらから入手できます

于 2011-11-26T21:26:42.453 に答える
3

まず、 WMI Code Creatorを使用して動作する C# バージョンを取得しました。

        try
        {
            ManagementObjectSearcher searcher =
                new ManagementObjectSearcher("root\\WMI",
                "SELECT * FROM WmiMonitorID");

            foreach (ManagementObject queryObj in searcher.Get())
            {
                Console.WriteLine("-----------------------------------");
                Console.WriteLine("WmiMonitorID instance");
                Console.WriteLine("-----------------------------------");
                //Console.WriteLine("Active: {0}", queryObj["Active"]);
                Console.WriteLine("InstanceName: {0}", queryObj["InstanceName"]);
                dynamic snid = queryObj["SerialNumberID"];

                Console.WriteLine("SerialNumberID: (length) {0}", snid.Length);
                Console.WriteLine("YearOfManufacture: {0}", queryObj["YearOfManufacture"]);
                dynamic code = queryObj["ProductCodeID"];
                string pcid = "";
                for (int i = 0; i < code.Length; i++)
                {
                    pcid = pcid + Char.ConvertFromUtf32(code[i]);
                    //pcid = pcid +code[i].ToString("X4");
                }
                Console.WriteLine("ProductCodeID: " +  pcid);
            }
        }
        catch (ManagementException e)
        {
            Console.WriteLine("An error occurred while querying for WMI data: " + e.Message);
        }

以下は、私が見つけて、読みたかったWmiMonitorIDクラス (EDID 構造)の InstanceName フィールドで動作するように微調整した C++ コードです。リンカー > 追加ライブラリ ビルド設定に setupapi.lib を追加することを忘れないでください。

#define _WIN32_DCOM
#include <iostream>
using namespace std;
#include <wbemidl.h>
# pragma comment(lib, "wbemuuid.lib")

int EnumMonitorIDs()
{
    ret.clear();

    HRESULT hres =  CoInitializeEx(0, COINIT_MULTITHREADED); 
    if (FAILED(hres))
    {
        cout << "Failed to initialize COM library. Error code = 0x" 
            << hex << hres << endl;
        return 1;                  // Program has failed.
    }

    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))
    {
        cout << "Failed to initialize security. Error code = 0x" 
            << hex << hres << endl;
        CoUninitialize();
        return 1;
    }

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

    if (FAILED(hres))
    {
        cout << "Failed to create IWbemLocator object."
            << " Err code = 0x"
            << hex << hres << endl;
        CoUninitialize();
        return 1;                 // Program has failed.
    }

    IWbemServices *pSvc = NULL; 
    BSTR AbackB = SysAllocString(L"root\\WMI");
    // Connect to the root\cimv2 namespace with
    // the current user and obtain pointer pSvc
    // to make IWbemServices calls.
    hres = pLoc->ConnectServer(
         AbackB, // 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
         );
    SysFreeString(AbackB);

    if (FAILED(hres))
    {
        cout << "Could not connect. Error code = 0x" 
             << hex << hres << endl;
        pLoc->Release();     
        CoUninitialize();
        return 1;                // Program has failed.
    }

    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))
    {
        cout << "Could not set proxy blanket. Error code = 0x" 
            << hex << hres << endl;
        pSvc->Release();
        pLoc->Release();     
        CoUninitialize();
        return 1;               // Program has failed.
    }

    BSTR wql = SysAllocString(L"WQL");
    BSTR select = SysAllocString(L"SELECT * FROM WmiMonitorID");
    IEnumWbemClassObject* pEnumerator = NULL;
    hres = pSvc->ExecQuery(
        wql,
        select,
        WBEM_FLAG_FORWARD_ONLY | WBEM_FLAG_RETURN_IMMEDIATELY,
        NULL,
        &pEnumerator);
    SysFreeString(wql);
    SysFreeString(select);

    if (FAILED(hres))
    {
        cout << "Query for operating system name failed."
            << " Error code = 0x" 
            << hex << hres << endl;
        pSvc->Release();
        pLoc->Release();
        CoUninitialize();
        return 1;               // Program has failed.
    }

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

        if (0 == uReturn)
        {
            break;
        }

        // ok, we have the EDID record, pull some fields out of it

        VARIANT vtProp;
        hr = pclsObj->Get(L"InstanceName", 0, &vtProp, 0, 0);
        wcout << "----------------" << endl << "InstanceName : " << vtProp.bstrVal << endl;
        VariantClear(&vtProp);



        pclsObj->Release();
    }

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

    return 0;
}
于 2011-06-16T19:43:06.700 に答える
0

Ofek Shilon のブログ投稿に基づいて、すべてのデバイス ID (メーカー ID + 製品 ID 文字列) を取得するように調整しました。

DISPLAY_DEVICE dd;
dd.cb = sizeof(dd);
DWORD dev = 0;  // device index
int id = 1;        // monitor number, as used by Display Properties > Settings

Str DeviceID;

while (EnumDisplayDevices(0, dev, &dd, 0))
{
    DISPLAY_DEVICE ddMon;
    ZeroMemory(&ddMon, sizeof(ddMon));
    ddMon.cb = sizeof(ddMon);
    DWORD devMon = 0;

    while (EnumDisplayDevices(dd.DeviceName, devMon, &ddMon, 0))
    {
        DeviceID.Sprintf("%s", ddMon.DeviceID);
        DeviceID = DeviceID.Slice(8);
        if (DeviceID.Index("\\") > 0)
            DeviceID = DeviceID.Slice(0, DeviceID.Index("\\"));

        printf ("DEVICEID = %s --------\n", DeviceID.utf8());
    }

    devMon++;

    ZeroMemory(&ddMon, sizeof(ddMon));
    ddMon.cb = sizeof(ddMon);
  }

  ZeroMemory(&dd, sizeof(dd));
  dd.cb = sizeof(dd);
  dev++;
}

ここでの Str はカスタム文字列クラスですが、何かを使用するために簡単にリファクタリングできるはずです。

于 2011-11-28T23:55:54.193 に答える