Featured image of post 聊天软件轰炸脚本

聊天软件轰炸脚本

⚠️ 警告

使用此脚本所产生的任何后果自负。已在 QQ 、微信电脑版和腾讯会议上做过测试。

1
2
3
4
5
6
7
8
9
set wshshell=wscript.createobject("wscript.shell")
wshshell.AppActivate"要进行刷屏的软件窗口名"
' 500 为发送次数
for i=1 to 500
' 每次发送延迟
wscript.sleep 1
wshshell.sendKeys "^v"
wshshell.sendKeys "%s"
next