Need a report with google chrome in all clients

SliperPoon 266 Reputation points
2022-12-30T05:13:54.127+00:00

I’m using SCCM and trying to get a report with google chrome information in all clients, what I need are:
Resource ID
Computer name
Application name
Installation date
Can you help me to get the report?

Microsoft Configuration Manager
0 comments No comments
{count} votes

2 additional answers

Sort by: Most helpful
  1. AllenLiu-MSFT 40,961 Reputation points Microsoft Vendor
    2022-12-30T06:11:47.337+00:00

    Hi, @SliperPoon

    Thank you for posting in Microsoft Q&A forum.

    We can use a SQL query like below:

    select arp.ResourceID, Name0, DisplayName0, InstallDate0 from v_Add_Remove_Programs arp  
    inner join v_R_System vrs on arp.ResourceID = vrs.ResourceID  
    where DisplayName0 like '%chrome%'  
    

    275024-1.png


    If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
    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.

    1 person found this answer helpful.

  2. Garth 5,801 Reputation points
    2022-12-30T10:30:48.327+00:00

    What is wrong with the built in report for this?

    0 comments No comments