微軟推出的免費殺毒軟件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 FilesMicrosoft Security Essentials目錄下。
運行-cmd,
cd C:Program FilesMicrosoft Security Essentials
MpCmdRun -SignatureUpdate
等帶提示完成後,MSE的病毒庫即完成了更新。