我正在寻找使用我的代码启动没有Add-Ons的IE的可能性。 以下代码工作正常,但启动正常的IE。
如何使用我的代码启动没有附加组件的IE?
提前谢谢!
SHDocVw.InternetExplorer ie = new SHDocVw.InternetExplorerClass();
object missing = new object();
ie.Navigate(url, ref missing, ref missing, ref missing, ref missing);
答案 0 :(得分:3)
您可以使用System.Diagnostics.Process启动IE而无需任何附加组件。以下示例。
System.Diagnostics.Process ieProcess;
ieProcess = System.Diagnostics.Process.Start(@"C:\Program Files\Internet Explorer\iexplore.exe", "-extoff");
答案 1 :(得分:0)
Process.Start("IExplore.exe", "http://stackoverflow.com" + " -extoff");
也可以有几个选项
Process.Start("IExplore.exe", "http://bullion.ru" + " -extoff -private");