Windows11/故障排除:修订间差异

来自OSSmedia
(创建页面,内容为“本页面收集在windows中遇到各种系统相关问题的解决方法。 == dns缓存未刷新 == ipconfig /flushdns == 更新服务或者系统组件相关报错 == 可以先尝试修复系统组件,使用管理员权限运行cmd或者powershell sfc /scannow”)
 
无编辑摘要
第6行: 第6行:
== 更新服务或者系统组件相关报错 ==
== 更新服务或者系统组件相关报错 ==
可以先尝试修复系统组件,使用管理员权限运行cmd或者powershell
可以先尝试修复系统组件,使用管理员权限运行cmd或者powershell
=== 扫描系统文件 ===
  sfc /scannow
  sfc /scannow
DISM /Online /Cleanup-Image /CheckHealth
DISM /Online /Cleanup-Image /ScanHealth
DISM /Online /Cleanup-Image /RestoreHealth
=== 清除更新缓存 ===
停止相关服务
net stop cryptsvc
net stop appidsvc
net stop bits
net stop wuauserv
删除特定文件夹
Ren %systemroot%\SoftwareDistribution SoftwareDistribution.old
Ren %systemroot%\System32\catroot2 catroot2.old
重启服务
net start cryptsvc
net start bits
net start wuauserv
net start appidsvc

2024年7月25日 (四) 19:32的版本

本页面收集在windows中遇到各种系统相关问题的解决方法。

dns缓存未刷新

ipconfig /flushdns

更新服务或者系统组件相关报错

可以先尝试修复系统组件,使用管理员权限运行cmd或者powershell

扫描系统文件

sfc /scannow
DISM /Online /Cleanup-Image /CheckHealth
DISM /Online /Cleanup-Image /ScanHealth
DISM /Online /Cleanup-Image /RestoreHealth

清除更新缓存

停止相关服务

net stop cryptsvc
net stop appidsvc
net stop bits
net stop wuauserv

删除特定文件夹

Ren %systemroot%\SoftwareDistribution SoftwareDistribution.old
Ren %systemroot%\System32\catroot2 catroot2.old

重启服务

net start cryptsvc
net start bits
net start wuauserv
net start appidsvc