我正在尝试通过 PowerShell 远程生成 IE 实例。
Invoke-Command -computername foo -scriptblock {
$ie = New-Object -ComObject InternetExplorer.Application
$ie.Visible = $true
$ie.Navigate("http://duckduckgo.com")
}
它生成实例,我可以在进程中看到它,但它对用户不可见。我究竟做错了什么?
我正在尝试通过 PowerShell 远程生成 IE 实例。
Invoke-Command -computername foo -scriptblock {
$ie = New-Object -ComObject InternetExplorer.Application
$ie.Visible = $true
$ie.Navigate("http://duckduckgo.com")
}
它生成实例,我可以在进程中看到它,但它对用户不可见。我究竟做错了什么?