QQ/微信VBS消息轰炸代码

带有当前循环次数的数字提示

set wshshell=wscript.createobject("wscript.shell") 
wshshell.AppActivate"test"
for i=1 to 100 '循环次数,根据需求更改
wscript.sleep 100 '间隔时间,单位ms(毫秒),可根据你的网速更改,不然消息太快了时间太短会发送失败
wshshell.sendKeys "^v" 
wshshell.sendKeys i '输出当前循环次数,计数
wshshell.sendKeys "%s" 
next

在这里插入图片描述

不带数字提示的

只需要把输出计数那一行去掉即可

set wshshell=wscript.createobject("wscript.shell") 
wshshell.AppActivate"test"
for i=1 to 100 '循环次数,根据需求更改
wscript.sleep 100 '间隔时间,单位ms(毫秒),可根据你的网速更改,不然消息太快了时间太短会发送失败
wshshell.sendKeys "^v" 
wshshell.sendKeys "%s" 
next

在这里插入图片描述
建立一个.txt文本,把代码复制进去,然后修该后缀为.vbs,然后把你想发送的内容(文字图片都可)复制或者剪贴,把鼠标点击到发送框,最后点击vbs脚本运行即可发送

发布了96 篇原创文章 · 获赞 25 · 访问量 7063

猜你喜欢

转载自blog.csdn.net/mochu7777777/article/details/105287745