Answers:
要获取已安装补丁的列表,您可以执行以下操作:
wmic qfe list
要卸载列出的补丁,请执行以下操作:
wusa /uninstall /kb:<kbnumber>
这里是一些具有更多信息的链接:
http: //www.systemcentercentral.com/BlogDetails/tabid/143/indexid/57960/Default.aspx
http://support.microsoft.com/kb/934307
http:// technet。 microsoft.com/en-us/library/dd883262(WS.10).aspx
注意:934307 KB文章说,您不能在Windows 2008上使用/ uninstall-这不适用于Windows 2008 R2-他们启用了R2的卸载开关(请参阅最后一个链接)。
在Windows 10上,/ quiet不再起作用。您可以使用:
$SearchUpdates = dism /online /get-packages | findstr "Package_for"
$updates = $SearchUpdates.replace("Package Identity : ", "") | findstr "KBXXXXXX"
#$updates
DISM.exe /Online /Remove-Package /PackageName:$updates /quiet /norestart
请参阅:https://social.technet.microsoft.com/Forums/windows/zh-CN/f6594e00-2400-4276-85a1-fb06485b53e6/issues-with-wusaexe-and-windows-10-enterprise?forum = win10itprogeneral