首页 > 编程 > VBScript > 正文

禁止QQ上网的vbs脚本代码

2020-06-26 18:12:58
字体:
来源:转载
供稿:网友
用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
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表