PowerShell使用Invoke-Command创建IE的远程实例

时间:2012-05-11 22:00:15

标签: powershell powershell-v2.0 powershell-remoting

我正在尝试通过PowerShell远程生成IE实例。

Invoke-Command -computername foo -scriptblock {
    $ie = New-Object -ComObject InternetExplorer.Application
    $ie.Visible = $true
    $ie.Navigate("http://duckduckgo.com")
}

它生成实例,我可以在进程中看到它,但它不会对用户可见。我做错了什么?

1 个答案:

答案 0 :(得分:2)

我认为你没有做错任何事。

据我了解,通过PSRemoting无法与远程用户的桌面进行交互。

如果Powershell无法做到这一点,微软(以前的Sysinternal)工具PSEXEC可以做到这一点(看一下-i参数)。