最近有用户进行执行win10系统更新的时候,出现0x80242fff错误码,有一个更新无法执行,如下图所示,那么Win10系统更新时出现0x80242fff错误代码怎么办?该如何解决呢?
Win10系统更新时出现0x80242fff错误代码怎么办?
1、左下角搜索cmd,之后以管理员权限打开;
2、输入以下命令;
01 SC config wuauserv start= auto
02 SC config bits start= auto
03 SC config cryptsvc start= auto
04 SC config trustedinstaller start= auto
05 SC 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
3、然后输入;
01 net stop wuauserv
02 net stop cryptSvc
03 net stop bits
04 net stop msiserver
05 ren C:\Windows\SoftwareDistribution SoftwareDistribution.old
06 ren C:\Windows\System32\catroot2 catroot2.old
07 net start wuauserv
08 net start cryptSvc
09 net start bits
10 net start msiserver
复制代码
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
4、之后,重新启动一下。