脚本之家,脚本语言编程技术及教程分享平台!
分类导航

Python|VBS|Ruby|Lua|perl|VBA|Golang|PowerShell|Erlang|autoit|Dos|bat|

服务器之家 - 脚本之家 - VBS - 多进程的实现投票的vbs脚本

多进程的实现投票的vbs脚本

2020-07-02 10:53脚本之家 VBS

这篇文章主要分享一段实现多进程投票的vbs脚本代码,有需要的朋友可以学习下

复制代码 代码如下:


set shell=createobject("wscript.shell")
set http=createobject("Microsoft.XMLHTTP")

'获得"wscript.exe"进程的数量
a=0
for each ps in getobject("winmgmts:\\.\root\cimv2:win32_process").instances_
if ps.name="wscript.exe" then a=a+1
next

if a<=5 then '默认的5进程,如果不足5个就运行一个自己
shell.run "wscript.exe """&wscript.scriptfullname&""""
else '第六个不参与刷票,用来退出程序
msgbox "按确定退出程序!",,"多进程刷票机 ——By 千寂孤城"
shell.run "taskkill /F /IM wscript.exe",0
wscript.quit
end if

' 开始刷票
do
http.open "POST","http://***/lookover.php?R1=2",false
http.send
loop

延伸 · 阅读

精彩推荐