这个问题是微软官方确认的一个已知严重故障。当您在 Windows 10 或 Windows Server 上安装 2025年1月14日 发布的更新 KB5071407 或 KB5071546 后,依赖 Microsoft Message Queuing (MSMQ) 服务的应用程序和功能会受到严重影响。
以下是问题的详细说明、临时解决方案和官方建议。
此更新破坏了 Windows 消息队列 (MSMQ) 服务的核心功能。具体表现为:
0x424。微软官方的首要建议是 卸载有问题的更新。这是目前最直接有效的解决方法。
方法一:通过控制面板卸载更新 (推荐) 以 管理员身份 打开 命令提示符 (CMD) 或 PowerShell。 输入以下命令并按回车,这会在当前用户桌面创建一个名为UninstallUpdates.cmd 的批处理文件:echo @echo off >"%USERPROFILE%\Desktop\UninstallUpdates.cmd" && echo if not "%%1"=="am_admin" (powershell -Command "Start-Process '%%~s0' -Verb RunAs" ^& exit /b) >>"%USERPROFILE%\Desktop\UninstallUpdates.cmd" && echo echo Uninstalling the problematic updates... >>"%USERPROFILE%\Desktop\UninstallUpdates.cmd" && echo wusa /uninstall /kb:5071407 /quiet /norestart >>"%USERPROFILE%\Desktop\UninstallUpdates.cmd" && echo wusa /uninstall /kb:5071546 /quiet /norestart >>"%USERPROFILE%\Desktop\UninstallUpdates.cmd" && echo echo Updates uninstalled. Please restart your computer. >>"%USERPROFILE%\Desktop\UninstallUpdates.cmd" && echo pause >>"%USERPROFILE%\Desktop\UninstallUpdates.cmd"
转到您的桌面,找到并 右键点击 UninstallUpdates.cmd 文件,选择 “以管理员身份运行”。
脚本会自动卸载两个有问题的更新。完成后,按提示 重启计算机。
方法二:手动卸载
打开 控制面板 -> 程序 -> 程序和功能 -> 查看已安装的更新。
在列表中找到对应您系统的更新:以管理员身份运行 PowerShell,执行以下命令之一(根据您实际安装的更新编号):
# 卸载 KB5071407
wusa /uninstall /kb:5071407 /quiet /norestart
# 或卸载 KB5071546
wusa /uninstall /kb:5071546 /quiet /norestart
执行后重启计算机。
总而言之,立即卸载 KB5071407 或 KB5071546 是当前唯一可行的临时解决方案。请务必在卸载后暂停更新,并等待微软发布包含修复的官方补丁。