标签: powershell comobject com-object
我想将Internet Explorer作为没有附加组件的新Com对象打开。
$ ie = New-Object -comobject InternetExplorer.Application
如何在没有附加组件的情况下启动Internet Explorer?
答案 0 :(得分:3)
它比这更容易(假设PowerShell 2.0用于Start-Process cmdlet):
Start-Process iexplore.exe -ArgumentList -extoff
请参阅Internet Explorer command line options上的此页。