url = InputBox("Enter web site URL (http:// optional)",,"你要的刷新页面")
if url = "" then WScript.Quit
refreshSeconds = InputBox("输入刷新时间,单位为分钟",,480)
if IsEmpty(refreshSeconds) then WScript.Quit
set ie = WScript.CreateObject("InternetExplorer.Application", "ie_")
ie.Navigate url
'ie.Visible = true
ie.Visible = false
do until ie.ReadyState = 4 : WScript.Sleep 100 : loop
while true
i = 0
while i < CInt(refreshSeconds)
WScript.Sleep 1000
i = i + 1
wend
ie.refresh2 3 '3=REFRESH_COMPLETELY
wend