4
可以從這個新的Com對象($ ie)獲取進程ID?從Com對象獲取進程ID
$ie=New-Object -comobject InternetExplorer.Application
$ie.visible=$true
$ie.Navigate("www.stackoverflow.com")
可以從這個新的Com對象($ ie)獲取進程ID?從Com對象獲取進程ID
$ie=New-Object -comobject InternetExplorer.Application
$ie.visible=$true
$ie.Navigate("www.stackoverflow.com")
下面將爲你父IE進程:
(Get-Process -Name iexplore)| Where-Object {$_.MainWindowHandle -eq $ie.HWND}
你能解釋一下你要使用的進程ID是什麼?請注意,IE是特殊的,因爲它爲每個選項卡創建新的進程。 – 2010-11-29 14:30:35