Symantec Endpoint Protection病毒提示

简介:
症状:用户的文件夹不断报错提示中毒,路径在C:\Documents and Settings\All Users\Application Data\Symantec\Symantec Endpoint Protection\xfer,查询后发现xfer只是Qurantine文件夹的一份类似复件的文件夹而已,应该不会报毒,而且此文件夹不断增大,有3G多了
 
原因:不明
 
解决方法:将如下内容保存成bat文件,执行,即可删除此文件夹内的内容,
 
 
@echo off
IF exist "c:\Program Files\Symantec\Symantec Endpoint Protection\smc.exe" GOTO condition1
IF exist "c:\Program Files\Symantec Antivirus\smc.exe" GOTO condition2
:condition1
cd "C:\Program Files\Symantec\Symantec Endpoint Protection"
goto dotherest
:condition2
cd "c:\Program Files\Symantec Antivirus"
goto dotherest
:dotherest
smc -stop
attrib -s "C:\Documents and Settings\All Users\Application Data\Symantec\Symantec Endpoint Protection\xfer\*.*"
del /f /q "C:\Documents and Settings\All Users\Application Data\Symantec\Symantec Endpoint Protection\xfer\*.*"
del /f /s /q "C:\Documents and Settings\All Users\Application Data\Symantec\Symantec Endpoint Protection\quarantine"
rd /s /q "C:\Documents and Settings\All Users\Application Data\Symantec\Symantec Endpoint Protection\quarantine"
md "C:\Documents and Settings\All Users\Application Data\Symantec\Symantec Endpoint Protection\quarantine"
smc -start





















本文转simmy51CTO博客,原文链接:http://blog.51cto.com/helpdesk/234976 ,如需转载请自行联系原作者
相关文章