哈哈哈哈哈哈哈哈哈哈……我终于练成了………………:D
师……师……师……弟……弟……弟…… 我……我……已……已……经…………练……成……先……天……神……功……功…………哎呀……谁拿暗器砸我!@#$%^&*:(
把以下代码另存为批处理文件,保存方法也再说一遍吧。把以下代码部分复制到新建的记事本文件中,然后选文件->另存为->kav.bat 注意下面的文件类型选择为所有类型。双击即可杀读和给U盘添加防毒功能了。这次可是杀毒加防毒套装了,自己慢慢玩吧!有毛病的话一定要通知我,好用的话就顶一下,也不枉我花这么长时间……
- @echo off
- ::Author By Undine
- title $$$$*天健精灵U盘防病毒*$$$$
- color 17
- echo.
- echo ****************** 正在检测可移动磁盘,请稍候! *********************
- echo.
- del %temp%kv.tmp >nul
- for %%i in (c,d,e,f,g,h,i,j,k,l,m,n,o,p,q) do @fsutil fsinfo drivetype %%i: >>"%temp%kv.tmp"
- findstr /i "可移动驱动器" "%temp%kv.tmp" >nul 2>nul
- if errorlevel==1 goto error
- if errorlevel==0 goto begin
- :error
- echo.
- echo ********************* 没有检测到可移动磁盘! ***********************
- echo.
- goto end
- :begin
- for /f "tokens=1" %%j in ('findstr /i "可移动驱动器" "%temp%kv.tmp"') do (
- cd /d %%j >nul 2>nul
- set str=%%j
- if not exist autorun.inf goto kvend
- cd autorun.inf
- cls
- if errorlevel 1 goto kv
- cd ..
- echo.
- echo *********** %%j盘已经被水妖精施加过魔法,病毒无法入侵! ***************
- echo.
- goto end
- :kv
- del /ashr autorun.inf >nul
- del /ash autorun.inf >nul
- del /ahr autorun.inf >nul
- del /asr autorun.inf >nul
- del /ah autorun.inf >nul
- del /as autorun.inf >nul
- del /ar autorun.inf >nul
- del autorun.inf >nul
- cls
- echo 发现autorun病毒
- echo 已清除autorun.inf
- if not exist recycler goto sxs
- echo 发现recycler病毒
- rmdir /s /q recycler >nul
- echo 已清除recycler目录
- :sxs
- if not exist sxs.exe goto kvend
- del /ash sxs.exe >nul
- ::del /ashr sxs.exe >nul
- echo 发现sxs病毒
- echo 已清除sxs.exe病毒
- :kvend
- echo.
- echo **************************** 杀毒完毕! *****************************
- echo.
- echo.
- echo ************************ 正在开启防毒功能! *************************
- echo.
- md autorun.inf
- attrib +h +r autorun.inf
- cd autorun.inf
- md autorun.inf
- attrib +h +r autorun.inf
- echo.
- echo *********** %str%盘已经被水妖精施加了魔法,病毒无法入侵! ****************
- echo.
- )
- :end
- echo.
- echo 请按任意键退出……
- pause >nul 2>nul
复制代码 |