批处理文件执行自动拨号投票

先建立设定PPOE账号,名称账号密码要同批处理文件中设置相同

dailup.bat

@echo off rem 设置名称,帐号,密码 set adslmingzi=GwbnSH set adslzhanghao=test1 set adslmima=123123 rem 数据库中起始数据ID set a=5 :start rem 投票间隔随机数 set /a rnd=%RANDOM%%%300000 + 30000 echo 随机间隔:%rnd% rem 连接 Rasdial %adslmingzi% %adslzhanghao% %adslmima% echo 连接中 rem 你的IP ipconfig rem 打开网页链接 echo 打开投票网页 set /a a+=1 echo set ierunner=createobject("internetexplorer.application") >ie.vbs echo ierunner.Visible=True >>ie.vbs echo ierunner.navigate "http://localhost/Vote/vote/default.asp?id=%a%" >>ie.vbs echo wscript.sleep %rnd% >>ie.vbs echo ierunner.Quit >>ie.vbs cscript //nologo ie.vbs echo 投票结束关闭网页 rem 断开连接 Rasdial %adslmingzi% /disconnect echo 断开连接 rem 延时 ping 127.0.0.1 -n 2 goto start

 

网页中程序功能自行实现。。

你可能感兴趣的:(数据库,Random)