Microsoft Edge report from SCCM

Vij 306 Reputation points
2021-05-26T11:17:13.367+00:00

Hi Team,

I am unable to get the MS edge data from SCCM database. I tried with "dbo.v_Add_REMOVE_PROGRAMS" & "dbo.v_GS_SoftwareFile" tables. But no luck. Could you help how to get edge report from SCCM.

Microsoft Configuration Manager
0 comments No comments
{count} votes

Accepted answer
  1. Sherry Kissinger 4,646 Reputation points
    2021-05-26T13:29:16.367+00:00

    If you don't have the Asset Intelligence for Installed Software enabled, you'll want to do so: https://learn.microsoft.com/en-us/mem/configmgr/core/clients/manage/asset-intelligence/configuring-asset-intelligence#steps-to-configure-asset-intelligence

    Presuming that is done already, here's some some possible sql to get you started:

    Select ist.ProductName0 as 'ProductName', ist.ProductVersion0 as 'ProductVersion', count(resourceid) as 'Count'
    from v_gs_installed_software ist where ist.productname0 = 'Microsoft Edge'
    group by ist.ProductName0, ist.Productversion0
    order by 'Count' Desc

    Select s1.netbios_name0 as 'ComputerName', ist.ProductName0 as 'ProductName', ist.Productversion0 as 'ProductVersion'
    from v_gs_installed_software ist where ist.productname0 = 'Microsoft Edge'
    and ist.ProductVersion0 = '90.0.818.62'

    0 comments No comments

1 additional answer

Sort by: Most helpful
  1. Garth 5,801 Reputation points
    2021-05-26T16:17:28.223+00:00

    Do you have AI inventory enabled? if so it is collected via it.


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.