PowerShell,无需加载项即可打开 IE
我想将 Internet Explorer 作为一个没有附加组件的新 Com 对象打开。
$ie=New-Object -comobject InternetExplorer.Application
如何在没有加载项的情况下启动 Internet Explorer?
I want to open the Internet Explorer as a new Com Object with no Add-ons.
$ie=New-Object -comobject InternetExplorer.Application
How could I start the Internet Explorer without Add-ons?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它甚至比这更容易(假设 Start-Process cmdlet 使用 PowerShell 2.0):
请参阅 Internet Explorer 命令行选项。
It's even easier than that (assuming PowerShell 2.0 for Start-Process cmdlet):
See this page on Internet Explorer command line options.