Wie man den Internet Explorer mit Powershell in Windows XP öffnet

2

Sie können einen Link im Internet Explorer öffnen und alle 5 Sekunden automatisch aktualisieren aber es kann nach dem Versuch nicht geöffnet werden

Powershell mit Administrator

Set-ExecutionPolicy remotesigned

Powershell-Skript

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
Khovanov
quelle
Das ist WSH, nicht Powershell.
Kevin Panko

Antworten:

1

Der Befehl

Set-ExecutionPolicy remotesigned

Ist ein PowerShell-Befehl, das Skript ist jedoch VBScript.

Rynant
quelle