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 Security Intune Configuration Manager Application
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Garth Jones 2,076 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,156 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.


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.