使用批处理删除U盘病毒、u.vbe病毒.

2008年4月1日 | 分类: 计算机与Internet | 标签: ,

编写BAT文件,拷入以下内容。保存退出直接运行即可。

?Download code.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
@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

运行结束后,重启电脑基本可消除这种病毒。


您可能感兴趣的文章:
  1. 如何解决ie无法显示验证码的问题

目前还没有任何评论.