открыть ссылку в Internet explorer и обновлять ее автоматически каждые 5 секунд
но он не может открыть после попробовать
powershell с администратором
Set-ExecutionPolicy remotesigned
сценарий powershell
On Error Resume Next
Set objExplorer = CreateObject("InternetExplorer.Application")
objExplorer.Navigate "http://www.google.com"
objExplorer.Visible = 1
Wscript.Sleep 5000
Set objDoc = objExplorer.Document
Do While True
Wscript.Sleep 5000
objDoc.Location.Reload(True)
If Err <> 0 Then
Wscript.Quit
End If
Loop