I've a procedure that gets IE version from the following registry key
HKLM\Software\Microsoft\Internet Explorer
and read the value named Version
.
For newer versions (IE 10 and above), Version
is 9.x (for example, IE 10 is 9.10.something), and the new svcVersion
value gives the true IE version.
Then I set HKCU\Software\Microsoft\Internet Explorer\Main\FeatureControl\FEATURE_BROWSER_EMULATION
to the correct browser value for my application.
The problem is that ms edge set this value to 11 like ie11.
Is there any way to retrieve from registry (or any other programmatically way) if is it installed edge?
What is the value to set for edge in FEATURE_BROWSER_EMULATION
?