powershell を使用して特定の URL を指すリモート マシンで IE を起動する方法はありますか。
このスクリプトは、私のローカル マシンでのみ開きます。
$PC = Read-Host "Name of machine to run cookie creator on"
$URL = "http://www.google.co.uk"
$ie = New-Object -com InternetExplorer.Application
$ie.visible=$true
$ie.navigate($URL)
何か案は?ありがとう