我正在構建一個Powershell腳本來下載Windows更新以使用DISM將它們融入離線Windows映像。例如,我的Windows 10搜索列表如下所示。Powershell如何確定哪些Windows更新沒有被取代?
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
我能做些什麼來確定哪些更新沒有被取代?
您是如何得到這麼多信息的?也就是說,你在使用什麼API? –
我從https://technet.microsoft.com/zh-CN/security/bulletin/?f=255&MSPPError=-2147217396獲取了Powershell – slmaq