针对Windows 11十二月更新(KB5048667/KB5048685)导致的游戏性能下降和菜单无响应问题,以下是分步解决方案:
卸载问题更新
powershell
wusa /uninstall /kb:5048667
wusa /uninstall /kb:5048685
暂停Windows更新(防止自动重新安装)
更新显卡驱动
调整图形设置
关闭内存完整性保护
重启Windows Explorer
重建系统索引
net.exe stop "Windows Search"
del /q "%ProgramData%\Microsoft\Search\Data\Applications\Windows\*"
net.exe start "Windows Search"
禁用启动项冲突
执行DISM和SFC扫描
dism /online /cleanup-image /restorehealth
sfc /scannow
重置Windows Update组件
powershell
net stop wuauserv
net stop cryptSvc
net stop bits
net stop msiserver
ren C:\Windows\SoftwareDistribution SoftwareDistribution.old
ren C:\Windows\System32\catroot2 catroot2.old
net start wuauserv
net start cryptSvc
net start bits
net start msiserver
回滚到旧版本(终极方案)
延迟更新安装
创建系统还原点
通过以上步骤可系统性解决问题。若仍存在异常,建议收集perfmon /report
性能报告和事件查看器日志提交微软支持。