查询安装的Windows更新的准确和本地化列表
我如何查询使用C#在计算机上安装的Windows更新的准确和本地化列表?
我将其精确定义为匹配Windows 7中“程序和功能”下Microsoft的“查看安装的更新”对话框的“Microsoft Windows”类别中显示的内容。
如果我使用WUApi.DLL,信息将返回本地化,但我无法获得准确的列表。 对于WUApi.dll,缺少一些修补程序,如果更新已被卸载,它仍然显示在由以下代码生成的列表中:
public static void GetWindowsUpdates()
{
var updateSession = new UpdateSession();
var updateSearcher = updateSession.CreateUpdateSearcher();
var count = updateSearcher.GetTotalHistoryCount();
if (count == 0)
return;
var history = updateSearcher.QueryHistory(0, count);
for (int i = 0; i < count; i++)
{
if (history[i].ResultCode == OperationResultCode.orcSucceeded)
{
Console.WriteLine(history[i].Title);
if (history[i].Operation == UpdateOperation.uoUninstallation)
{
Console.WriteLine("!!! Operation == uninstall"); // This is never true
}
}
}
}
WUApi搜索方法也没有使用以下代码提供准确的列表:
WUApiLib.UpdateSessionClass session = new WUApiLib.UpdateSessionClass();
WUApiLib.IUpdateSearcher searcher = session.CreateUpdateSearcher();
searcher.IncludePotentiallySupersededUpdates = true;
WUApiLib.ISearchResult result = searcher.Search("IsInstalled=1");
Console.WriteLine("Updates found: " + result.Updates.Count);
foreach (IUpdate item in result.Updates)
{
Console.WriteLine(item.Title);
}
如果我使用WMI读取更新列表,我可以得到一个准确的列表,但它不是本地化的。 我使用下面的代码:
ManagementObjectSearcher searcher = new ManagementObjectSearcher(new ObjectQuery("select * from Win32_QuickFixEngineering"));
searcher.Options.UseAmendedQualifiers = true;
searcher.Scope.Options.Locale = "MS_" + CultureInfo.CurrentCulture.LCID.ToString("X");
ManagementObjectCollection results = searcher.Get();
Console.WriteLine("n==WMI==" + results.Count);
foreach (ManagementObject item in results)
{
Console.WriteLine("t--Properties--");
foreach (var x in item.Properties)
{
Console.WriteLine(x.Name + ": " + item[x.Name]);
}
Console.WriteLine("t--System Properties--");
foreach (var x in item.SystemProperties)
{
Console.WriteLine(x.Name + ": " + x.Value);
}
Console.WriteLine("t--Qualifiers--");
foreach (var x in item.Qualifiers)
{
Console.WriteLine(x.Name + ": " + x.Value);
}
}
WUApi只注册通过WUApi完成的操作,因此如果您手动安装或删除更新,它将在卸载后保留在列表中或永远不会显示在列表中。 因此,我认为WUApi不能作为一个准确的清单。
WMI允许访问精确的Windows更新列表,但该列表仅过滤到“Microsoft Windows”类别。 这很困难,因为我的要求是获取所有更新的列表。
内部“查看已安装的更新”对话框使用CBS(基于组件的服务)。 不幸的是,CBS并不公开。 有关API的一些细节可以在这里找到:http://msdn.microsoft.com/en-us/library/Aa903048.aspx
链接地址: http://www.djcxy.com/p/47531.html上一篇: Query for accurate and localized list of installed Windows updates