0

WUAAPIを使用してWindowsUpdate情報を取得しようとすると、次のプロセスが実行されます。しかし、私はIUpdate::BundledUpdatesプロパティと少し混乱しています。

  1. IUpdateSearcherを作成します
  2. 検索条件に基づいて検索します。「IsHidden=1またはIsInstalled=1」として検索条件を指定しました
  3. 検索の結果、IUpdateCollectionが作成されます。
  4. IUpdateCollectionでget_Itemを使用して、各更新(IUpdate)を取得し、必要な値(私の場合はKB番号)を出力しました。
  5. ただし、IUpdateには、get_BundledUpdates()メソッドを使用してIUpdateCollectionを提供するBundledUpdateプロパティがあります。BundledUpdatesの結果を繰り返したところ、結果が得られませんでした。

バンドルされた更新を取得する際に何かが足りませんか?(または)指定した基準には、IUpdateCollectionの最初の結果セットの一部としてバンドルされた更新が含まれていますか?

また、MSDNでは、WUA APIの各インターフェイスの例が不足しています。誰かが、WUA APIの各インターフェイスの機能を明確に説明するリソースを提供できますか?

C ++コンソールアプリケーションの完全なソースコードを追加しました:

#include <wuapi.h>
#include <iostream>
#include <wuerror.h>

using namespace std;


int main()
{

    HRESULT hr;
    hr = CoInitialize(NULL);

    IUpdateSession* iUpdate;
    IUpdateSearcher* searcher;
    ISearchResult* results;
    BSTR criteria = SysAllocString(L"IsInstalled=1 or IsHidden=1 or IsPresent=1");

    hr = CoCreateInstance(CLSID_UpdateSession, NULL, CLSCTX_INPROC_SERVER,
        IID_IUpdateSession, (LPVOID*)&iUpdate);
    hr = iUpdate->CreateUpdateSearcher(&searcher);

    wcout << L"Searching for updates ..."<<endl;
    hr = searcher->Search(criteria, &results);
    SysFreeString(criteria);

    switch(hr)
    {
    case S_OK:
        wcout<<L"List of applicable items on the machine:"<<endl;
        break;
    case WU_E_LEGACYSERVER:
        wcout<<L"No server selection enabled"<<endl;
        return 0;
    case WU_E_INVALID_CRITERIA:
        wcout<<L"Invalid search criteria"<<endl;
        return 0;
    }

    IUpdateCollection * updateList;
    IUpdate *updateItem;
    LONG updateSize;
    BSTR updateName;

    results->get_Updates(&updateList);
    updateList->get_Count(&updateSize);

    if (updateSize == 0)
    {
        wcout << L"No updates found"<<endl;
    }

    for (LONG i = 0; i < updateSize; i++)
    {
        IStringCollection *KBCollection;
        LONG KBCount;
        updateList->get_Item(i, &updateItem);
        updateItem->get_KBArticleIDs(&KBCollection);
        KBCollection->get_Count(&KBCount);
        for(int k=0;k<KBCount;k++)
        {
            BSTR KBValue;
            KBCollection->get_Item(k,&KBValue);
            wcout << L"KB" << KBValue << endl;
        }

        //Retrieve the bundled updates
        IUpdateCollection *updtCollection;
        updateItem->get_BundledUpdates(&updtCollection);
        LONG updtBundledCount;
        updtCollection->get_Count(&updtBundledCount);
        for(LONG j=0;j<updtBundledCount;j++)
        {
            cout<<"Bundled KBs" <<endl;
            IUpdate *bundledUpdateItem;
            updtCollection->get_Item(j,&bundledUpdateItem);
            bundledUpdateItem->get_KBArticleIDs(&KBID);
            if(KBID != NULL)
            {
                LONG KBCount;
                BSTR KBIDValue;

                KBID->get_Count(&KBCount);
                for(LONG j=0;j<KBCount;j++)
                {

                    wcout << "KB" <<(KBIDValue) << endl;
                    temp.setKBID(KBIDValue);
                }
            }
        }
    }

    wcout << L"Total KB Count : " << updateSize << endl;
    CoUninitialize();

    return 0;
}
4

1 に答える 1

2

バンドルされたアップデートを取得するために、コードを修正するだけです。

#include "stdafx.h"
#include <wuapi.h>
#include <iostream>
#include <wuerror.h>

using namespace std;


int _tmain(int argc, _TCHAR* argv[])
{
    HRESULT hr;
    hr = CoInitialize(NULL);

    IUpdateSession* iUpdate;
    IUpdateSearcher* searcher;
    ISearchResult* results;
    BSTR criteria = SysAllocString(L"IsInstalled=1 or IsHidden=1 or IsPresent=1");

    hr = CoCreateInstance(CLSID_UpdateSession, NULL, CLSCTX_INPROC_SERVER, IID_IUpdateSession, (LPVOID*)&iUpdate);
    hr = iUpdate->CreateUpdateSearcher(&searcher);

    wcout << L"Searching for updates ..."<<endl;
    hr = searcher->Search(criteria, &results); 
    SysFreeString(criteria);

    switch(hr)
    {
    case S_OK:
        wcout<<L"List of applicable items on the machine:"<<endl;
        break;
    case WU_E_LEGACYSERVER:
        wcout<<L"No server selection enabled"<<endl;
        return 0;
    case WU_E_INVALID_CRITERIA:
        wcout<<L"Invalid search criteria"<<endl;
        return 0;
    }

    IUpdateCollection *updateList;
    IUpdate *updateItem;
    LONG updateSize;
    BSTR updateName;

    results->get_Updates(&updateList);
    updateList->get_Count(&updateSize);

    if (updateSize == 0)
    {
        wcout << L"No updates found"<<endl;
    }

    for (LONG i = 0; i < updateSize; i++)
    {
        IStringCollection *KBCollection;
        LONG KBCount;
        updateList->get_Item(i,&updateItem);
        updateItem->get_Title(&updateName);
        wcout<<i+1<<" - "<<updateName<<endl;

        IUpdateCollection *updtCollection;
        LONG updtBundledCount;        
        //Retrieve the bundled updates
        updateItem->get_BundledUpdates(&updtCollection);
        hr = updtCollection->get_Count(&updtBundledCount);
        if ((updtBundledCount>0) && (hr ==S_OK))
        {
            wcout << L"Bundled Updates " <<(updtBundledCount) << endl;
            for(LONG j=0;j<updtBundledCount;j++)
            {
                IUpdate *bundledUpdateItem;
                BSTR bundledName;
                updtCollection->get_Item(j,&bundledUpdateItem);   
                bundledUpdateItem->get_Title(&bundledName);
                wcout<<L"    "<<j+1<<" - "<<bundledName<<endl;
            }
        }
    }
    ::CoUninitialize();
    wcin.get();
    return 0;
}
于 2012-10-17T00:03:41.353 に答える