使用Windows 更新代理 API,可以列出 Windows 更新。例如:
Set UpdateSession = CreateObject("Microsoft.Update.Session")
Set UpdateSearcher = UpdateSession.CreateUpdateSearcher()
Set SearchResult = UpdateSearcher.Search("IsInstalled=0 OR IsInstalled=1")
Set Updates = SearchResult.Updates
For I = 0 to SearchResult.Updates.Count-1
Set update = searchResult.Updates.Item(I)
WScript.Echo I + 1 & "> " & update.Title
Next
由于上面我正在查询已安装和未安装的更新,因此我假设结果列出了我当前 Windows 版本/构建的所有可用更新。那是对的吗?
我现在的意思是:我也可以查询不同的版本吗?
例如,列出来自 Windows 10 系统的 Windows Server 2016 更新。
这个想法是轻松配置开发人员 Windows 虚拟机,采用 ISO 和最近的累积更新。