命令行解决微软MSE免费杀软无法更新的问题

2010/10/19 11:05:02    编辑:软媒 - 笨笨     字体:【

Win7之家www.win7china.com):命令行解决微软MSE免费杀软无法更新的问题

微软推出的免费杀毒软件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的病毒库即完成了更新。