我想在Powershell中创建两个新的COM对象进程(internetexplorer.application(ie11))。
我尝试做:
$ie = new-object -com internetexplorer.application
$ie2 = new-object -com internetexplorer.application
$ie.visible = $true
$ie2.visible = $true
在任务管理器中,我可以看到:
iexplore.exe (this is the main process)
iexplore.exe *32 (this is the sub process)
iexplore.exe *32 (this is the sub process)
我有一个iexplore.exe
进程,每个COM
和iexplore.exe*32
都有子进程。
如何执行两个或多个主要进程iexplore.exe或换句话说,创建一个或多个powershell进程,每个powershell-process将启动一个COM对象
这也将有所帮助:
如何从此COM对象获取正确的子过程 id
?不是主要过程。