all installed application on all client

ramin sa 261 Reputation points
2021-09-12T09:35:04.9+00:00

Hi dear expert

we need report to get all installed application name on all client in our enterprise

whether installed via SCCM or via User

please let me know in detail

Thank you in advance

Microsoft Security | Intune | Configuration Manager | Other
0 comments No comments
{count} votes

Answer accepted by question author
  1. Amandayou-MSFT 11,166 Reputation points
    2021-09-14T08:42:10.377+00:00

    Hi,

    Thanks for your reply.

    I modify the script and it could be for all our client.

    SELECT FCM.Name As 'Computer Name', ARP.displayname0 As 'Product Name', Version0 As 'Product Version'
    
    FROM v_Add_Remove_Programs As ARP
    
    JOIN v_FullCollectionMembership As FCM on ARP.ResourceID=FCM.ResourceID
    
    WHERE FCM.CollectionID = 'SMS00001'
    
    GROUP BY DisplayName0, Version0, FCM.Name
    
    ORDER BY [Computer Name] Asc, [Product Name] Asc
    

    Best regards,
    Amanda

    0 comments No comments

3 additional answers

Sort by: Most helpful
  1. Amandayou-MSFT 11,166 Reputation points
    2021-09-13T08:16:33.09+00:00

    Hi @ramin sa ,

    What we using could be the SCCM report Software 02E - installed software on a specific computer. But it have to run the report on each PC, so it is very time consuming.

    131506-9131.png

    We could use the following sql query, and access the installed software of computers that are discovered by SCCM.

    DECLARE @CollID AS VARCHAR(8);  
      
    SET @CollID = ‘SMS00001’  
    SELECT  DisplayName0 As ‘Product Name’, Version0 As ‘Product Version’, FCM.Name As ‘Computer Name’  
      
    FROM  v_Add_Remove_Programs As ARP   
      
    JOIN v_FullCollectionMembership As FCM on ARP.ResourceID=FCM.ResourceID    
      
    WHERE  FCM.CollectionID = @CollID   
      
    GROUP BY DisplayName0, Version0, FCM.Name  
      
    ORDER BY DisplayName0 Asc, Version0 Asc   
    

    Here is the article we could refer to:
    https://bestitsm.wordpress.com/2018/06/29/list-software-inventory-items-of-computers-discovered-by-sccm/
    Note: Non-Microsoft link, just for the reference.


    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.


  2. Garth 5,801 Reputation points
    2021-09-13T11:29:57.357+00:00

    What is wrong with the built in reports for this?


  3. ramin sa 261 Reputation points
    2021-09-15T04:50:48.34+00:00

    Thank you dear Amandayou-MSFT

    you resolve our issue

    0 comments No comments

Your answer

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