标签: powershell
$ ie = New-Object -com internetexplorer.application
我想在下次运行脚本时重用此对象。我不想创建新对象
答案 0 :(得分:1)
您应该可以使用此方法附加到进程,检查Windows()方法的结果,找到IE,然后构建正确的where子句:
$ie = (New-Object -ComObject Shell.Application).Windows() | Where-Object {...}