Export SCCM application deployment to excel

Froziez 1 Reputation point
2021-03-11T03:56:23.797+00:00

Hello, I am deploying application using SCCM (software center) I would like to know if there is any solution that i can export deployment report using powershell or manual from console? (the copy-paste is not user friendly)

Microsoft Configuration Manager Application
Microsoft Configuration Manager Application
Microsoft Configuration Manager: An integrated solution for for managing large groups of personal computers and servers.Application: A computer program designed to carry out a specific task other than one relating to the operation of the computer itself, typically to be used by end users.
455 questions
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Garth Jones 2,071 Reputation points
    2021-03-11T13:21:52.947+00:00

    You can natively export the built-in reports to Excel. Just use the Save icon and pick the format you want.

    1 person found this answer helpful.

  2. Amandayou-MSFT 11,046 Reputation points
    2021-03-12T02:50:26.833+00:00

    Hi @Froziez

    In addition to the methods provided by Garth, we can also use the following script to list the names of applications, software version and number of deployments as output. The script also exports the output to a .csv file. We could open this output file using Microsoft Excel.

    PowerShell script to list all the application deployments
    Import-Module 'C:\Program Files (x86)\Microsoft Configuration Manager\AdminConsole\bin\ConfigurationManager.psd1'
    Set-Location P01:
    $FilePath = "C:\powershellscripts\test.csv" Get-CMApplication | Select-Object LocalizedDisplayName,SoftwareVersion,NumberOfDeployments | Export-CSV $FilePath

    Here is the link about PowerShell Script details:
    https://www.prajwaldesai.com/list-sccm-application-deployments-using-powershell-script/
    Note: This is non-official Microsoft article just for your 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.