用户在更新20H2版本后,设置里的更新和安全选项卡,windows系统更新提示出现错误,并建议重新打开设置。遇到这种情况该如何解决呢?我们一起来看看吧!
具体解决步骤:
1、以管理员权限打开cmd,输入以下命令;
- 01SC config wuauserv start= auto
- 02SC config bits start= auto
- 03SC config cryptsvc start= auto
- 04SC config trustedinstaller start= auto
- 05SC config wuauserv type=share
复制代码
SC config wuauserv start= auto
SC config bits start= auto
SC config cryptsvc start= auto
SC config trustedinstaller start= auto
SC config wuauserv type=share
2、然后输入;
- 01net stop wuauserv
- 02net stop cryptSvc
- 03net stop bits
- 04net stop msiserver
- 05ren C:WindowsSoftwareDistribution SoftwareDistribution.old
- 06ren C:WindowsSystem32catroot2 catroot2.old
- 07net start wuauserv
- 08net start cryptSvc
- 09net start bits
- 10net start msiserver
复制代码
net stop wuauserv
net stop cryptSvc
net stop bits
net stop msiserver
ren C:WindowsSoftwareDistribution SoftwareDistribution.old
ren C:WindowsSystem32catroot2 catroot2.old
net start wuauserv
net start cryptSvc
net start bits
net start msiserver
重启后,windows20H2中系统更新后,Windows更新出现错误的问题就解决了,你也来试试吧!