Manoj,
All security zones have to have protected mode set on, or off. Your IT service desk will have to set these via the group policy if you cannot edit it yourself.
You could try:-
OpenQA.Selenium.IE.InternetExplorerOptions theOptions = new OpenQA.Selenium.IE.InternetExplorerOptions();
theOptions.IntroduceInstabilityByIgnoringProtectedModeSettings = true;
Also
ieDriverService.LoggingLevel = InternetExplorerDriverLogLevel.Trace;
ieDriverService.LogFile = "c:\\iedriver.log";
You also need 'Enable Enhanced Protected Mode*' in the advanced tab, security options to not be set, again this will have to be done via the group policy if you cannot edit yourself.
I can get IE 11 to load my required website on Windows 10, but the Selenium driver does not create a session when requested and the session times out after 60 seconds.
Please can anyone help?
I am using all the latest drivers etc..
Michael