我正在编写一个脚本,该脚本应该从Internet Explorer内的链接安装一些软件,但是不幸的是,该站点需要32位Internet Explorer才能工作。有没有办法强制在64位计算机上打开32位Internet Explorer窗口?从32位计算机上运行时,脚本可以正常工作。
$ie = New-Object -ComObject InternetExplorer.Application
$ie.Navigate2($url)
$ie.Visible = $true
最佳答案
$url = "http://www.google.com"
$shell = New-Object -ComObject WScript.Shell
$shell.Exec("C:\Program Files (x86)\Internet Explorer\iexplore.exe $url") | Out-Null
关于internet-explorer - 强制32位Internet Explorer ComObject,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11226839/