WUAAPIを使用してWindowsUpdate情報を取得しようとすると、次のプロセスが実行されます。しかし、私はIUpdate::BundledUpdatesプロパティと少し混乱しています。
- IUpdateSearcherを作成します
- 検索条件に基づいて検索します。「IsHidden=1またはIsInstalled=1」として検索条件を指定しました
- 検索の結果、IUpdateCollectionが作成されます。
- IUpdateCollectionでget_Itemを使用して、各更新(IUpdate)を取得し、必要な値(私の場合はKB番号)を出力しました。
- ただし、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;
}