I’m looking for a possibility to start a IE with no Add-Ons with my code.
The following code works fine, but starts a normal IE.
How can I start a IE with no Add-Ons with my code?
Thank you in advance!
SHDocVw.InternetExplorer ie = new SHDocVw.InternetExplorerClass();
object missing = new object();
ie.Navigate(url, ref missing, ref missing, ref missing, ref missing);
You can start IE without any add-on by utilizing System.Diagnostics.Process. Sample below.