4

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

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

4

1 回答 1

6

使用以下代码片段。尚未使用 Firefox 或任何其他奇怪的工具进行测试,但您将根据 Windows 10 中的默认浏览器获得以下返回值。

  • 铬 - ChromeHTML
  • 边缘 - 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;
    } 
} 

希望这可以帮助。坦帕的希利。

于 2015-09-22T18:54:31.087 回答