如何确定Microsoft Edge是否为默认浏览器?

时间:2015-07-10 00:13:04

标签: microsoft-edge

是否有可靠的编程方式来确定Microsoft Edge是默认浏览器?

我知道一个选项是使用IApplicationAssociationRegistration::QueryCurrentDefault方法返回为http注册的默认应用程序。目前还不清楚此调用返回的ProgID是一个固定字符串,因此它可能不是验证Edge确实是默认浏览器的最佳方法。

1 个答案:

答案 0 :(得分:5)

使用以下代码段。 Haven没有使用Firefox或任何其他奇怪的测试,但您将根据Windows 10中的默认浏览器获得以下返回值。

  • Chrome - ChromeHTML
  • Edge - AppXq0fevzme2pys62n3e0fbqa7peapykr8v
  • Internet Explorer - IE.HTTP

下面的代码段应该有效。在控制台应用程序中测试。如果有人想要VB版本,请告诉我。

using Microsoft.Win32;
public static class BrowserUtils
{
    static public string GetSystemDefaultBrowser()
    {
        string _retval = string.Empty;
        const string userChoice = @"Software\Microsoft\Windows\Shell\Associations\UrlAssociations\http\UserChoice";
        using (RegistryKey userChoiceKey = Registry.CurrentUser.OpenSubKey(userChoice))
        {
            if (userChoiceKey == null)
            {
                _retval = "unknown-> userChoiceKey returned null";
            }

            object progIdValue = userChoiceKey.GetValue("Progid");
            if (progIdValue == null)
            {
                _retval = "unknown->GetValue(Progid) returned null";
            }
            //_retval = String.Format("progId=[{0}]", progIdValue.ToString());
            _retval = progIdValue.ToString();
        }
        return _retval;
    } 
} 

希望这会有所帮助。希利在坦帕。