Ejemplo n.º 1
0
        /// <summary>
        /// Sets the given executable in the registry to use the specified version of IE for embedded browser usage
        /// </summary>
        /// <param name="exeName">The name of the executable to add to the registry location as a key entry</param>
        /// <param name="IEVersion">The version of Internet Explorer to use with the associated executable</param>
        public static void SetRegisterKeyForIEVersion(string exeName, IERegistryVersion IEVersion)
        {
            //https://weblog.west-wind.com/posts/2011/May/21/Web-Browser-Control-Specifying-the-IE-Version#Using-the-X--UA--Compatible-HTML-Meta-Tag
            //https://stackoverflow.com/questions/17922308/use-latest-version-of-internet-explorer-in-the-webbrowser-control

            string browserEmulationKey = Environment.Is64BitProcess ? IE_BROWSER_EMULATION_REGPATH_64 : IE_BROWSER_EMULATION_REGPATH_32;

            int registryToSet = (int)IEVersion;
            int currentRegistryValue;

            using (RegistryKey Key = Registry.CurrentUser.CreateSubKey(browserEmulationKey, RegistryKeyPermissionCheck.ReadWriteSubTree))
            {
                if (Key.GetValue(exeName) != null && Key.GetValue(exeName) is int IeValue)
                {
                    currentRegistryValue = IeValue;
                }
                else
                {
                    currentRegistryValue = -1;
                }

                Logging.Debug(LogOptions.MethodName, "RegistryCurrent: {0}, RegistryToSet: {1}", currentRegistryValue, registryToSet);
                if (currentRegistryValue != registryToSet)
                {
                    Logging.Debug("Values are not same, update registry");
                    Key.SetValue(exeName, registryToSet, RegistryValueKind.DWord);
                    Logging.Info(LogOptions.MethodName, "IE Emulation registry updated for exe {0}", exeName);
                }
                else
                {
                    Logging.Debug("Values are same, continue");
                }
            }
        }
Ejemplo n.º 2
0
 /// <summary>
 /// Sets RelhaxModpack.exe in the registry to use the specified version of IE for embedded browser usage
 /// </summary>
 /// <param name="IEVersion">The version of Internet Explorer to use with the associated executable</param>
 public static void SetRegisterKeyForIEVersion(IERegistryVersion IEVersion)
 {
     SetRegisterKeyForIEVersion(System.Diagnostics.Process.GetCurrentProcess().ProcessName + ".exe", IEVersion);
 }