如何隐藏特定的 Windows 更新?
How can I hide specific Windows update?
两个月前,Microsoft 发布了更新(another question 的一部分),这导致我的软件出现问题。我找到了如何卸载它的解决方案,但在卸载后,Windows 再次安装了它。
我知道未经用户许可不得隐藏更新 - 这不是我的问题的一部分。
我正在寻找隐藏此更新的方法。我接受任何解决方案,但我更喜欢 Batch
或 VB-script
.
阅读What is the "Get Windows 10" Tray Item and How Do You Remove It? and follow it mutatis mutandis:
- 要卸载更新(例如
KB3035583
):
- 手动:先打开Windows更新,点击左下角的“已安装更新”。要快速查找
KB3035583
,您可以按名称排序。找到它后,右键单击并选择“Uninstall
”。然后重启电脑。
- 或使用 Windows Update Standalone Installer
以编程方式 wusa /uninstall /KB:3035583
- 如果您将 Windows 更新设置为自动下载和安装,这意味着如果您卸载此更新,它将在几天后自动重新安装。要隐藏
KB3035583
更新并防止它被重新安装,请在 Windows 更新应用程序中右键单击它,然后 select “Hide update
”。
- 要以编程方式隐藏更新,请参阅 Opmet's answer to another question at SuperUser: How to disable the “Get Windows 10” icon shown in the notification area (tray)?
两个月前,Microsoft 发布了更新(another question 的一部分),这导致我的软件出现问题。我找到了如何卸载它的解决方案,但在卸载后,Windows 再次安装了它。
我知道未经用户许可不得隐藏更新 - 这不是我的问题的一部分。
我正在寻找隐藏此更新的方法。我接受任何解决方案,但我更喜欢 Batch
或 VB-script
.
阅读What is the "Get Windows 10" Tray Item and How Do You Remove It? and follow it mutatis mutandis:
- 要卸载更新(例如
KB3035583
):- 手动:先打开Windows更新,点击左下角的“已安装更新”。要快速查找
KB3035583
,您可以按名称排序。找到它后,右键单击并选择“Uninstall
”。然后重启电脑。 - 或使用 Windows Update Standalone Installer 以编程方式
wusa /uninstall /KB:3035583
- 手动:先打开Windows更新,点击左下角的“已安装更新”。要快速查找
- 如果您将 Windows 更新设置为自动下载和安装,这意味着如果您卸载此更新,它将在几天后自动重新安装。要隐藏
KB3035583
更新并防止它被重新安装,请在 Windows 更新应用程序中右键单击它,然后 select “Hide update
”。- 要以编程方式隐藏更新,请参阅 Opmet's answer to another question at SuperUser: How to disable the “Get Windows 10” icon shown in the notification area (tray)?