PowerShellを介してリモートでIEインスタンスを生成しようとしています。
Invoke-Command -computername foo -scriptblock {
$ie = New-Object -ComObject InternetExplorer.Application
$ie.Visible = $true
$ie.Navigate("http://duckduckgo.com")
}
インスタンスを生成します。プロセスで表示できますが、ユーザーには表示されません。私は何が間違っているのですか?