回复:十万火急~~~~~求助各位高手~~~我中了BT病毒了
将以下内容复制到记事本,然后文件另存为autorun免疫.bat,执行此文件。
@echo off
echo 正在免疫autorun病毒,请稍后...
rem 删除所有autorun.inf
for %%i in (c d e f g h i j) do if exist %%i:\autorun.inf del /a /q %%i:\autorun.inf
for %%i in (c d e f g h i j) do if exist %%i:\autorun.inf rd /s /q %%i:\autorun.inf
rem 创建免疫的autorun.inf文件夹
for %%i in (c d e f g h i j) do if exist %%i: md %%i:\autorun.inf
for %%i in (c d e f g h i j) do if exist %%i:\autorun.inf md %%i:\autorun.inf\已免疫..\
rem 隐藏autorun.inf文件夹
for %%i in (c d e f g h i j) do if exist %%i:\autorun.inf attrib +s +h +r %%i:\autorun.inf
rem 清除MountPoints2注册项
reg delete HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\MountPoints2 /f
reg add HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\MountPoints2 /f
rem 恢复驱动器shell默认值
reg add HKCR\Drive\shell /ve /d none /f
echo.
echo 免疫完成!
echo.
pause