|
7#
楼主 |
发表于 2010-8-31 17:43:50
|
只看该作者
本人制作一个批处理,U盘中毒后很好用
内容如下:
@echo off
if exist autorun.inf attrib -a -r -h -s autorun.inf & del autorun.inf
for /f "delims=" %%i in ('dir /a /b') do attrib "%%i" -s -h -r
for /f "delims=" %%i in ('dir /ad /b') do if exist "%%i.exe" attrib "%%i.exe" -s -h -r && del "%%i.exe"
for /f "delims=" %%i in ('dir /ad /b') do if exist "%%i.lnk" attrib "%%i.lnk" -s -h -r && del "%%i.lnk"
for /f "delims=" %%i in ('dir *.vbs /a /b') do if exist "%%i" attrib "%%i" -s -h -r && del "%%i"
if exist "Recycled" attrib +s +h "Recycled"
if exist "System Volume Information" attrib +s +h -a "System Volume Information"
if exist "Recycled" attrib "Recycled"
if exist "System Volume Information" attrib "System Volume Information"
if exist "Recycled" echo 操作完成,Recycled和ystem Volume Information两个系统文件夹的属性都是SH。
if not exist "Recycled" echo 操作完成。
pause
使用方法:放到每个分区的根目录下,中毒后运行即可
可以取消被病毒隐藏的文件夹,同时删除文件夹模仿者等病毒
缺点是:不能一次性清除所有分区的病毒!哪个水平高的写出来,期待中。。。
[ 本帖最后由 jszforms 于 2010-8-31 17:50 编辑 ] |
|