Remotely determine if Chromium Edge is the default browser

Jacen VonDielingen 1 Reputation point
2021-08-02T23:59:58.323+00:00

I used the following group policy to set Chromium Edge as the default browser:

Computer Configuration --> Administrative Templates --> Microsoft Edge
Set Microsoft Edge as default browser (Enabled)

For the most part this seems to be working. However, there have been some users that claim that Chromium Edge is not default. How can I take an inventory of the network to find what browser is the default on each computer? Can the registry be queried? Can we use a tool such as SCCM?

Windows 10
Windows 10
A Microsoft operating system that runs on personal computers and tablets.
10,563 questions
Windows
Windows
A family of Microsoft operating systems that run across personal computers, tablets, laptops, phones, internet of things devices, self-contained mixed reality headsets, large collaboration screens, and other devices.
4,724 questions
Microsoft Configuration Manager
0 comments No comments
{count} votes

3 answers

Sort by: Most helpful
  1. Castorix31 81,461 Reputation points
    2021-08-03T10:54:39.307+00:00

    You could use PowerShell

    I'm not in a network, so I just did a test with my PC (key for Windows 10, it was different on older OS) :

    $Computer = "MY_PC_NAME"
    $Reg = [Microsoft.Win32.RegistryKey]::OpenRemoteBaseKey('CurrentUser', $Computer)
    $RegKey= $Reg.OpenSubKey("Software\Microsoft\Windows\Shell\Associations\UrlAssociations\http\UserChoice")
    $BrowserProgId = $RegKey.GetValue("ProgId")
    Write-Output $BrowserProgId
    

    I get MSEdgeHTM

    You can use a loop with all servers, like in this thread

    0 comments No comments

  2. Garth 5,801 Reputation points
    2021-08-03T11:02:47.727+00:00

    Cm already inventory the the default browser, as long as ai classes are enabled. https://www.recastsoftware.com/resources/asset-intelligence-for-configmr/

    0 comments No comments

  3. HanyunZhu-MSFT 1,841 Reputation points
    2021-08-04T01:24:30.4+00:00

    Hi @Jacen VonDielingen ,

    We could find the devices that have default browser using SCCM CMPivot.

    Please refer to the following steps:

    1. navigate to Assets and Compliance > Overview > Device Collections > Right-click a device collection and select Start CMPivot.
      120325-1.png
    2. Find the SMSDefaultBrowser. Right click it and click Insert.
      120326-2.png
    3. Click Run Query, then we could check the result.
      120327-3.png

    Hope the information can help you.


    If the response is helpful, please click "Accept Answer"and upvote it.
    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.