疑似病毒的文件删不掉怎么办?

来源:百度知道 编辑:UC知道 时间:2024/07/02 11:39:04
我的C盘windows/temp的文件夹里有个名为~DF40D1的文档,怎么都删不掉,而且它好像会不断生成新的文档的样子,让我的C盘越来越满,应该怎么办?

木马专家2009查杀

不是病毒。是缓存文件。删不掉的话是系统正在调用。不过这些文件确实应该删掉,不然系统会越来越慢。把下面的程序复制了,新建个文本文档,然后保存成123123.BAT,然后双击运行,会清除掉这些文件。
@echo off
pause
echo 正在清理系统垃圾文件,请稍等......
del /f /s /q %systemdrive%\*.tmp
del /f /s /q %systemdrive%\*._mp
del /f /s /q %systemdrive%\*.log
del /f /s /q %systemdrive%\*.gid
del /f /s /q %systemdrive%\*.chk
del /f /s /q %systemdrive%\*.old
del /f /s /q %systemdrive%\recycled\*.*
del /f /s /q %windir%\*.bak
del /f /s /q %windir%\prefetch\*.*
rd /s /q %windir%\temp & md %windir%\temp
del /f /q %userprofile%\cookies\*.*
del /f /q %userprofile%\recent\*.*
del /f /s /q "%userprofile%\Local Settings\Temporary Internet Files\*.*"
del /f /s /q "%userprofile%\Local Settings\Temp\*.*"
del /f /s /q "%userprofile%\recent\*.*"
echo 清理系统垃圾完成!
echo. & pause