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)
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)
You can natively export the built-in reports to Excel. Just use the Save icon and pick the format you want.
Thank you for reply but can you guide me where is the save button?
i can't find it.
Hi @Froziez-9478,
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.
Is there anyway to include the percentage of success/ failure and reason of failure?
5 people are following this question.