get all installed application name report

ramin sa 256 Reputation points
2021-09-13T04:04:35.217+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 Configuration Manager
0 comments No comments
{count} votes

3 answers

Sort by: Most helpful
  1. Eswar Koneti 2,196 Reputation points
    2021-09-13T07:33:42.513+00:00

    You will not be able to track if the application is installed by user or ConfigMgr unless you add tag or something for all apps that are installed from Configmgr.
    For the list of all apps , you can use the default configmgr reports (there are many) to export the apps list for further checking.
    If you are looking for all installed apps on all clients, refer to this why you shouldnt do this. https://www.recastsoftware.com/resources/how-to-perform-a-basic-software-audit-2/

    Thanks,
    Eswar


  2. Amandayou-MSFT 11,046 Reputation points
    2021-09-13T08:20:00.737+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.

    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.

    0 comments No comments

  3. Garth 5,801 Reputation points
    2021-09-13T11:31:56.973+00:00

    What is wrong with the built in reports for this?

    0 comments No comments