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秒左右就会看到你发送的消息了
