SCCM WQL query deployment status of application or software

Fajer M 0 Reputation points
2024-04-28T08:48:33.8133333+00:00

greetings,

I want to get the status of appliaction or software depylomnet on sccm using the WQL query is there way to do that ?

Thank you in advnce.

Microsoft Configuration Manager
{count} votes

1 answer

Sort by: Most helpful
  1. AllenLiu-MSFT 40,881 Reputation points Microsoft Vendor
    2024-04-29T05:54:03.34+00:00

    Hi, @Fajer M

    Thank you for posting in Microsoft Q&A forum.

    Yes, you can use WQL queries to get the deployment status of an application or software in SCCM. You can use the SMS_DeploymentAssetDetails class to get the deployment status of an application or software. Here's an example WQL query that you can use:

    SELECT * FROM SMS_DeploymentAssetDetails WHERE DeploymentName = 'Application Name'
    

    Replace 'Application Name' with the name of the application or software that you want to get the deployment status for.


    If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Add comment".

    1 person found this answer helpful.