Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
$ie = New-Object -com Internetexplorer.application
次回スクリプトを実行するときに、このオブジェクトを再利用したいと考えています。新しいオブジェクトを作成したくない
これでプロセスにアタッチし、Windows() メソッドの結果を確認し、IE を見つけて、正しい where 句を作成できるはずです。
$ie = (New-Object -ComObject Shell.Application).Windows() | Where-Object {...}