如何在新进程中启动多COM对象?

时间:2018-07-25 07:25:31

标签: powershell internet-explorer com

我想在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进程,每个COMiexplore.exe*32都有子进程。

如何执行两个或多个主要进程iexplore.exe或换句话说,创建一个或多个powershell进程,每个powershell-process将启动一个COM对象

这也将有所帮助: 如何从此COM对象获取正确的子过程 id?不是主要过程。

0 个答案:

没有答案