O comando
Set-ExecutionPolicy remotesigned
É um comando do PowerShell, mas o script é VBScript.
espere abrir um link no Internet Explorer e atualizá-lo automaticamente a cada 5 segundos mas não pode abrir depois de tentar
PowerShell com administrador
Set-ExecutionPolicy remotesigned
script do 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
O comando
Set-ExecutionPolicy remotesigned
É um comando do PowerShell, mas o script é VBScript.
Tags windows-xp powershell