中国DOS联盟论坛

中国DOS联盟

-- 联合DOS 推动DOS 发展DOS --

联盟域名:www.cn-dos.net  论坛域名:www.cn-dos.net/forum
DOS,代表着自由开放与发展,我们努力起来,学习FreeDOS和Linux的自由开放与GNU精神,共同创造和发展美好的自由与GNU GPL世界吧!

游客:  注册 | 登录 | 命令行 | 会员 | 搜索 | 上传 | 帮助 »
作者:
标题: 天X防毒批处理 上一主题 | 下一主题
putao
初级用户




积分 80
发帖 41
注册 2007-10-5
状态 离线
『楼 主』:  天X防毒批处理

将下面的代码用记事本写好,再别存为.bat的文件(批处理文件)
最好将系统盘用影子系统保护起来,在加上本批处理相信可以防%95的病毒.
本批处理是根据我个人的机子的分区来写的,你可以自己根据自己电脑改一下.
注:本批处理过后会生成部份文件夹,其正是为了防毒的请你放心!
请各位多多指教!

@echo off&setlocal enabledelayedexpansion
mode con cols=100 lines=10
for /l %%a in (1,1,8) do (
echo/
echo\
echo.
echo **********************************************************************
echo *************************天X防毒批处理*******************************
echo **********************************************************************
color cf
ping -n 1 127.1>nul
color fc
ping -n 1 127.1>nul
cls
)
color f1
cls
pause

attrib %windir%\Logo1_.exe -s -r -h
del %windir%\Logo1_.exe /y
md %windir%\Logo1_.exe
attrib %windir%\Logo1_.exe +s +r +h
md %windir%\Logo1_.exe\p..\
attrib %windir%\uninstall\rundl132.exe -s -r -h
del %windir%\uninstall\rundl132.exe /y
md %windir%\uninstall\rundl132.exe
attrib %windir%\uninstall\rundl132.exe +s +r +h
md %windir%\uninstall\rundl132.exe\p..\

attrib c:\autorun.inf -s -r -h
del c:\autorun.inf /y
md c:\autorun.inf
attrib c:\autorun.inf +s +r +h
md c:\autorun.inf\p..\
attrib c:\auto.exe -s -r -h
del c:\auto.exe /y
md c:\auto.exe
attrib c:\auto.exe +s +r +h
md c:\auto.exe\p..\
attrib c:\autorun.exe -s -r -h
del c:\autorun.exe /y
md c:\autorun.exe
attrib c:\autorun.exe +s +r +h
md c:\autorun.exe\p..\

attrib d:\autorun.inf -s -r -h
del d:\autorun.inf /y
md d:\autorun.inf
attrib d:\autorun.inf +s +r +h
md d:\autorun.inf\p..\
attrib d:\auto.exe -s -r -h
del d:\auto.exe /y
md d:\auto.exe
attrib d:\auto.exe +s +r +h
md d:\auto.exe\p..\
attrib d:\autorun.exe -s -r -h
del d:\autorun.exe /y
md d:\autorun.exe
attrib d:\autorun.exe +s +r +h
md d:\autorun.exe\p..\

attrib e:\autorun.inf -s -r -h
del e:\autorun.inf /y
md e:\autorun.inf
attrib e:\autorun.inf +s +r +h
md e:\autorun.inf\p..\
attrib e:\autorun.exe -s -r -h
del e:\autorun.exe /y
md e:\autorun.exe
attrib e:\autorun.exe +s +r +h
md e:\autorun.exe\p..\
attrib e:\auto.exe -s -r -h
del e:\auto.exe /y
md e:\auto.exe
attrib e:\auto.exe +s +r +h
md e:\auto.exe\p..\

attrib f:\autorun.inf -s -r -h
del f:\autorun.inf /y
md f:\autorun.inf
attrib f:\autorun.inf +s +r +h
md f:\autorun.inf\p..\
attrib f:\autorun.exe -s -r -h
del f:\autorun.exe /y
md f:\autorun.exe
attrib f:\autorun.exe +s +r +h
md f:\autorun.exe\p..\
attrib f:\auto.exe -s -r -h
del f:\auto.exe /y
md f:\auto.exe
attrib f:\auto.exe +s +r +h
md f:\auto.exe\p..\

echo/
echo\
echo.
echo **********************************************************************
echo ***************************OK   OVER**********************************
echo **********************************************************************
color cf
ping -n 1 127.1>nul
color fc
ping -n 1 127.1>nul
cls
)



http://user.qzone.qq.com/182365808
2007-10-5 15:12
查看资料  发送邮件  发短消息 网志  OICQ (182365808)  编辑帖子  回复  引用回复
waynebeat
初级用户




积分 84
发帖 28
注册 2006-5-3
状态 离线
『第 2 楼』:  

这劳动力,挺强

2007-10-5 22:55
查看资料  发送邮件  发短消息 网志   编辑帖子  回复  引用回复
luckboy45
中级用户




积分 487
发帖 212
注册 2007-4-1
状态 离线
『第 3 楼』:  

太傻的东西...不过辛苦楼主了.....其实可以用简单的代码实现的,....



逍遥@浪子@反病毒
2007-10-7 19:20
查看资料  发短消息 网志   编辑帖子  回复  引用回复
HAT
版主





积分 9023
发帖 5017
注册 2007-5-31
状态 离线
『第 4 楼』:  

建议用for循环来遍历盘符,比如:
@echo off
set AllDrive=c d e f g h i j k l m n o p q r s t u v w x y z
for %%a in (%AllDrive%) do (
  attrib %%a:\autorun.inf -r -h -s -a
  del %%a:\autorun.inf
  md %%a:\autorun.inf
  md %%a:\autorun.inf\lszf..\
  del /f /s /q %%a:\RECYCLER\*.*
  )
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer" /v NoDriveTypeAutoRun /t reg_dword /d 255 /f


2007-10-8 17:55
查看资料  发短消息 网志   编辑帖子  回复  引用回复
fanqiang
初级用户





积分 113
发帖 56
注册 2007-9-4
状态 离线
『第 5 楼』:  

del %%a:\autorun.inf

最好换成
rd %%a:\autorun.inf
就好多了

2007-10-9 15:22
查看资料  发送邮件  发短消息 网志   编辑帖子  回复  引用回复
67411666
初级用户





积分 45
发帖 25
注册 2007-10-14
状态 离线
『第 6 楼』:  

对啊

2007-10-14 15:56
查看资料  发送邮件  发短消息 网志   编辑帖子  回复  引用回复
putao
初级用户




积分 80
发帖 41
注册 2007-10-5
状态 离线
『第 7 楼』:  大家想法都很对

你说的把del改为rd
   首先是要删掉autorun.inf这个文件而不是文件夹呀~



http://user.qzone.qq.com/182365808
2007-10-18 23:07
查看资料  发送邮件  发短消息 网志  OICQ (182365808)  编辑帖子  回复  引用回复

请注意:您目前尚未注册或登录,请您注册登录以使用论坛的各项功能,例如发表和回复帖子等。


可打印版本 | 推荐给朋友 | 订阅主题 | 收藏主题



论坛跳转: