You can natively export the built-in reports to Excel. Just use the Save icon and pick the format you want.
Export SCCM application deployment to excel
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)
2 answers
Sort by: Most helpful
-
-
Amandayou-MSFT 11,141 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 $FilePathHere 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.