我正在研究一個腳本,該腳本應該從Internet Explorer中的鏈接安裝一些軟件,不幸的是該站點需要32位Internet Explorer才能工作。有沒有辦法強制在64位機器上打開32位Internet Explorer窗口?該腳本在32位機器上運行時工作正常。強制32位Internet Explorer ComObject
$ie = New-Object -ComObject InternetExplorer.Application
$ie.Navigate2($url)
$ie.Visible = $true
你的答案和@CB提供的答案是否有區別? – dazedconfused