用Windows计划任务定时执行某一Url地址
[
2009-4-10 9:51:01
| 作者: 一线风
| 阅读:875
| 评论:0
| 天气:
| 心情: normal
]
| 心情: normal
]
结合计划任务与VBS就能实现,注意,VBS间隔的时间要小于计划任务间隔的时间
VBS代码
- Randomize
- d = Rnd()
- Dim ie
- Set ie = CreateObject("InternetExplorer.Application")
- ie.navigate("http://t.test.com/service/GameServer.aspx?rand="&d)
- ie.menubar=0
- ie.visible=1
- ie.ToolBar=0
- ie.StatusBar=0
- ie.Height=360
- ie.Width=500
- Wscript.sleep 6000 '10秒后关闭
- ie.quit
- Set IE = Nothing
[一线风 最后修改于 2009-4-20 10:37:12]
订阅地址
