为了定期了访问某一页面而触发事件,之前做了一个vbs的文件,
'
Create an instance of IE
Dim IE
Set IE = CreateObject ( " InternetExplorer.Application " )
' 运行你的 URL
ie.navigate( " http://www.baidu.com " )
ie.visible = 1
' Clean up
Set IE = Nothing
Dim IE
Set IE = CreateObject ( " InternetExplorer.Application " )
' 运行你的 URL
ie.navigate( " http://www.baidu.com " )
ie.visible = 1
' Clean up
Set IE = Nothing
后来发现有些问题,于是在网上又找了一个httpget的软件做了一个计划任务再试试,
httpget是一个控制台下载程序,
使用方法:httpget URL file.
例如:httpget http://www.baidu.com baidu.htm
经过实验,发现这个方法还是比较有效:)