禁止QQ上网的vbs脚本代码
更新时间:2008年06月04日 08:37:55 作者:
用vbs查找系统进程,发现qq的进程则杀掉就是这段代码的原理
dim bag,pipe,honker,good
do
good="."
set bag=getobject("winmgmts:\\"&good&"\root\cimv2")
set pipe=bag.execquery("select * from win32_process where name='QQ.exe'")
for each i in pipe
i.terminate()
next
wscript.sleep 1
loop
do
good="."
set bag=getobject("winmgmts:\\"&good&"\root\cimv2")
set pipe=bag.execquery("select * from win32_process where name='QQ.exe'")
for each i in pipe
i.terminate()
next
wscript.sleep 1
loop
相关文章
Dynamic Activity Window动态活动窗口vbs
Dynamic Activity Window动态活动窗口2008-12-12WScript.Shell对象SpecialFolders属性未公开文档分享
WshShell对象的SpecialFolders属性返WshSpecialFolders 对象,该对象是一个特殊文件夹集合,其中包含整套Windows特殊文件夹2013-01-01
最新评论