微信轟炸/重復發送消息


1.新建一個文本文件 復制代碼 到文本文件里面 

  代碼分為倆種

  ①帶數字的提示的

set wshshell=wscript.createobject("wscript.shell") 
wshshell.AppActivate"要發送的人的名字" 
for i=1 to 100     //循環次數
wscript.sleep 100     //間隔時間,單位毫秒
wshshell.sendKeys "^v" 
wshshell.sendKeys i 
wshshell.sendKeys "%s" 
next

  ②不帶數字的提示的

set wshshell=wscript.createobject("wscript.shell") 
wshshell.AppActivate"要發送的人的名字" 
for i=1 to 100
wscript.sleep 100 
wshshell.sendKeys "^v" 
wshshell.sendKeys "%s" 
next

2.關閉文本 保存 改名 txt改成vbs 保存

3.復制要發送的內容

4.打開微信聊天界面

5.雙擊vbs文件  延遲1秒左右就會看到你發送的消息了

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM