|
微软推出的免费杀毒软件Microsoft Security Essentials(MSE)成为了不少伴侣的杀毒工具,可是在现实使用中,也经常呈现一些无法更新的问题。
无法更新对于杀毒软件就意味着风险,是以今天为巨匠介绍2个可以解决MSE无法更新的体例。
第一种:
微软杀毒软件MSE不能进级,无法更新病毒库,错误代码是0x80070422。针对该代码0x80070422,微软的诠释是要搜检与启动以下三个处事:自动更新Automatic Updates(wuauserv)、Background Intelligent Transfer Service(BITS)、DCOM 处事器历程启动器(DcomLaunch),启动类型应设为“自动”。用呼吁,就是下面的内容:
sc config wuauserv start= auto
sc config bits start= auto
sc config DcomLaunch start= auto
net stop wuauserv
net start wuauserv
net stop bits
net start bits
net start DcomLaunch
第二种:
我们可以经由过程节制台来完成更新,更新历程为MpCmdRun.exe,位于C:\Program Files\Microsoft Security Essentials目录下。
运行-cmd,
cd C:\Program Files\Microsoft Security Essentials
MpCmdRun -SignatureUpdate
等带提醒完成后,MSE的病毒库即完成了更新。 |
|