一些病毒会在击打开磁盘时自动运行,应此如何在不打开任何磁盘的条件下清除系统的Autorun.inf这类U盘病毒呢?
1、点击开始菜单的“运行”命令输入“CMD”,然后在弹出的命令提示符窗口中执行“attrib autorun.inf -s -h -r”,这是去掉该文件的隐藏等属性内容。如图片所示:
2、再在窗口中执行“del auto.inf”就可以了,有多个磁盘可以须对个盘符进行同样的操作!比如:“del d:\autorun.*/f /q /as”。
3、复制下面的到记事本然后 保存为bat格式 双击
@echo on
taskkill /im explorer.exe /f
taskkill /im wscript.exe
start reg add HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\EXplorer\Advanced /v ShowSuperHidden /t REG_DWORD /d 1 /f
start reg import kill.reg
del c:\autorun.* /f /q /as
del %SYSTEMROOT%\system32\autorun.* /f /q /as
del d:\autorun.* /f /q /as
del e:\autorun.* /f /q /as
del f:\autorun.* /f /q /as
del g:\autorun.* /f /q /as
del h:\autorun.* /f /q /as
del i:\autorun.* /f /q /as
del j:\autorun.* /f /q /as
del k:\autorun.* /f /q /as
del l:\autorun.* /f /q /as
start explorer.exe
另外对于“橙色八月”,“落雪木马”等病毒请参考:http://hi.baidu.com/nocacker/blog/item/02e6f51c2fbc078a87d6b696.html