无法使用/ quiet开关使用wusa.exe卸载补丁程序

时间:2017-05-06 15:39:07

标签: windows windows-10 windows-update

有人试过卸载windows 10 redstone中的补丁wusa.exe / quiet开关吗?

似乎它不接受安静的开关。

以下命令我用来卸载补丁:

Wusa.exe / uninstall / kb:xxxxx / quiet / norestart

有什么想法吗?

1 个答案:

答案 0 :(得分:0)

这也发生在Windows Server 2016中,/ quiet选项不能与/ kb组合使用:xxxx

您可以使用以下内容:

$SearchUpdates = dism /online /get-packages | findstr "Package_for"
$updates = $SearchUpdates.replace("Package Identity : ", "") | findstr "KBXXXXXX"
DISM.exe /Online /Remove-Package /PackageName:$updates /quiet /norestart

Check this other SO thread