0

我正在寻找一种可能性,用我的代码启动一个没有附加组件的 IE。下面的代码可以正常工作,但会启动一个普通的 IE。

如何使用我的代码启动没有附加组件的 IE?

先感谢您!

SHDocVw.InternetExplorer ie = new SHDocVw.InternetExplorerClass();
object missing = new object();
ie.Navigate(url, ref missing, ref missing, ref missing, ref missing);
4

2 回答 2

3

您可以使用 System.Diagnostics.Process 启动 IE,而无需任何附加组件。示例如下。

System.Diagnostics.Process ieProcess;
ieProcess = System.Diagnostics.Process.Start(@"C:\Program Files\Internet Explorer\iexplore.exe", "-extoff");
于 2012-10-11T18:22:48.970 回答
0
Process.Start("IExplore.exe", "http://stackoverflow.com" + " -extoff");

也可能有多种选择

Process.Start("IExplore.exe", "http://bullion.ru" + " -extoff -private");
于 2014-09-01T19:40:14.520 回答