Powershell如何确定哪些Windows更新尚未被取代?

时间:2016-04-01 19:32:58

标签: c# windows powershell

我正在构建一个Powershell脚本来下载Windows更新,以便使用DISM将它们整合到脱机Windows映像中。例如,我的Windows 10搜索列表如下所示。

d          Id       KB      Title                                                                                       Rating   
-          --       --      -----                                                                                       ------   
3/8/2016   MS16-036 3144756 Security Update for Adobe Flash Player                                                      Critical 
3/8/2016   MS16-035 3141780 Security Update for .NET Framework to Address Security Feature Bypass                       Important
3/8/2016   MS16-034 3143145 Security Update for Windows Kernel-Mode Drivers to Address Elevation of Privilege           Important
3/8/2016   MS16-033 3143142 Security Update for Windows USB Mass Storage Class Driver to Address Elevation of Privilege Important
3/8/2016   MS16-032 3143141 Security Update for Secondary Logon to Address Elevation of Privile                         Important
3/8/2016   MS16-030 3143136 Security Update for Windows OLE to Address Remote Code Execution                            Important
3/8/2016   MS16-028 3143081 Security Update for Microsoft Windows PDF Library to Address Remote Code Execution          Critical 
3/8/2016   MS16-027 3143146 Security Update for Windows Media to Address Remote Code Execution                          Critical 
3/8/2016   MS16-026 3143148 Security Update for Graphic Fonts to Address Remote Code Execution                          Critical 
3/8/2016   MS16-024 3142019 Cumulative Security Update for Microsoft Edge                                               Critical 
3/8/2016   MS16-023 3142015 Cumulative Security Update for Internet Explorer                                            Critical 

我该怎么做才能确定哪些更新尚未被取代?

2 个答案:

答案 0 :(得分:1)

根据您的具体情况和需求,运行a WSUS server可能是一种选择。您实际上并不需要使用它来分发更新,但可以使用there's an API来查询WSUS服务器数据库。您也可以使用API​​来批准"您想要的更新,导致WSUS下载它们。

我最好的猜测是,这对你的场景来说太过分了,你在自我回答中建议的方法会更好。但是对于一些未来的读者来说,WSUS可能是一个更明智的选择,如果遇到麻烦,你可以选择另外考虑。

还应注意,Microsoft通过WSUS提供的更新集与通过Windows Update提供的更新略有不同和/或更新可能会在不同时间发布到两个频道。 (安全更新通常同时或几乎同时发布到两个通道。)

答案 1 :(得分:0)

道歉,我的问题和答案都不是程序化的。编程中的答案可以满足我的需求,所以我觉得它属于这一类。

事实证明,为了最好地确定离线图片所需的更新,请使用image(2)上的Download Microsoft Security Bulletin Data链接。最好的办法是用程序查询Excel文件,然后确定哪些更新取代其他更新。从那里,关于下载可从DISM使用的实际MSU文件,我不确定。然而,这足以回答我的问题,我将不得不做一些互联网调查,以了解如何批量下载MSU文件列表。