Board logo

标题: [已解决]请大侠们发一个autorun..的清除工具好吗? [打印本页]

作者: dengke227     时间: 2008-2-23 01:07    标题: [已解决]请大侠们发一个autorun..的清除工具好吗?

如题,单位电脑里C、E、F盘都有一个autorun..和一个RECYCLER的文件夹,已经用avast4.7杀过毒了,清掉了一些系统里的木马,但这几个垃圾文件夹始终清不掉,试着去掉RECYCLER的隐藏属性,再用winrar压缩后删除源文件的功能,还是清不干净,非常碍眼,试过autorun的免疫专杀,还是不行!

不管这些文件夹还有病毒没,就想清理掉他们,请大侠们发一个清除工具好吗?先谢谢了!

[ Last edited by dengke227 on 2008-2-25 at 08:08 PM ]
作者: wghxx     时间: 2008-2-23 14:40
安装江民,再杀就行
作者: semiuel     时间: 2008-2-25 11:25
首先告诉楼主,这两个文件夹都不是病毒.
如果是autorun.inf文件,那有可能,也只是可能这个文件是AUTORUN病毒的加载文件,autorun.inf文件本身不是病毒.而且你现在说的是autorun.inf文件夹,很明显这是AUTORUN病毒的免疫文件夹,也就是说有这个文件夹在,即使感染了AUTORUN病毒,你双击盘符的时候也不会激活病毒.
另外,RECYCLED文件夹是回收站的目录,你把这个目录删除了,回收站的文件放哪里啊?

其次告诉楼主,如果你不想看到这两个文件夹,你可以选择"隐藏受保护的操作系统文件"和"不显示隐藏的文件和文件夹",因为这两个目录一般情况下都是隐藏的.

[ Last edited by semiuel on 2008-2-25 at 11:27 AM ]
作者: 313885174     时间: 2008-2-26 17:05
for %%a in (c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z) do attrib -s -h -r %%a:\Autorun.inf
for %%a in (c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z) do rd /q /s %%a:\Autorun.inf
作者: ITU     时间: 2008-3-11 23:16
也可以试试这个 :)

@echo off
if "%1"=="/u" goto uninstall
if "%1"=="/?" goto help
for %%i in (c;d;e;f;g;h;i;j;k;l;m;n;o;p;q;r;s;t;u;v;w;x;y;z) do ( (
if exist %%i:\autorun.inf if not exist %%i:\autorun.inf\nul del /a %%i:\autorun.inf
attrib -r -s -h -a %%i:\autorun.inf
if exist %%i:\autorun.inf if not exist %%i:\autorun.inf\nul ren %%i:\autorun.inf autorun.tmp ) & (
if not exist %%i:\autorun.inf if exist %%i:\nul md %%i:\autorun.inf & (
md %%i:\autorun.inf\免疫防护文件...\ ) &(
attrib +r +s +h +a %%i:\autorun.inf ) &(
echo 预防Autorun病毒的入侵, 请不要删除。 > %%i:\autorun.inf\说明.txt ) ) )

goto end
:uninstall
for %%i in (c;d;e;f;g;h;i;j;k;l;m;n;o;p;q;r;s;t;u;v;w;x;y;z) do (
if exist %%i:\autorun.inf\nul if exist %%i:\nul rd /s /q %%i:\autorun.inf )
goto end
:help
echo.
echo %0    建立Autorun.inf文件
echo %0 /u 卸载Autorun预防补丁.
echo.
echo.
:end
set notauto=
echo.
echo                    完成!

pause

[ Last edited by ITU on 2008-3-12 at 12:50 AM ]
作者: woo88     时间: 2008-3-12 15:29
怎么不行呢
作者: wistron1     时间: 2008-3-20 12:29

nice i get it