I am working on a windows application, where i have to provide the user, a way to change the proxy settings by opening the IE settings window. Google chrome uses the same method, when you try to change the proxy settings in chrome, it will open internet explorer properties window with the connection tab selected.
I have observed that chrome is running run32dll.exe to achieve this, but it is also passing some arguments along with it
System.Diagnostics.Process.Start("rundll32.exe", "SomeArgumentsHere");
my only problem is i don't know what arguments it is passing.
To simplify my question, i want to know a way to open IE settings window with the connection tab selected, from my C#.net application
Update the following code worked for me
System.Diagnostics.Process.Start("inetcpl.cpl", ",4");