有没有办法在远程机器上启动 IE,使用 powershell 将其指向特定的 URL。
这个脚本只会在我的本地机器上打开:
$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)
有任何想法吗?谢谢