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

Das ist WSH, nicht Powershell.
Kevin Panko

Antworten:


1

Der Befehl

Set-ExecutionPolicy remotesigned

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

Durch die Nutzung unserer Website bestätigen Sie, dass Sie unsere Cookie-Richtlinie und Datenschutzrichtlinie gelesen und verstanden haben.
Licensed under cc by-sa 3.0 with attribution required.