SCCM – WQL Query for devices with specific software installed

sql2016
sql2016

Table of Contents

Estimated reading time: 1 minutes

If you want to identify machines with a specific piece of software installed, you can utilise the Add/Remove Programs software inventory to do this by using this query.

select distinct  
      SMS_R_System.Name,   
      SMS_R_System.OperatingSystemNameandVersion,   
      SMS_R_System.ClientVersion   
 from SMS_R_System  
      inner join SMS_G_System_ADD_REMOVE_PROGRAMS  
      on SMS_G_System_ADD_REMOVE_PROGRAMS.ResourceID = SMS_R_System.ResourceId  
      where SMS_G_System_ADD_REMOVE_PROGRAMS.DisplayName = "Microsoft Office Professional Plus 2010"  
      order by SMS_R_System.Name

In this example, we are using “Microsoft Office Professional Plus” – however, you can change this value to anything you like (that matches the Add/Remove Programs software inventory) to bring back the required information.

More Queries

Our full range of SQL and WQL Collection queries are available here.

Feedback

If you have any questions or feedback about this post, or if you would like us to create any queries for you, please go ahead and leave us a message below in the comments section and we will get back to you as quick as we can.

Click to rate this post!
[Total: 0 Average: 0]

Share this content:

Avatar for Andrew Armstrong

About Andrew Armstrong

Founder of TechyGeeksHome and Head Editor for over 15 years! IT expert in multiple areas for over 26 years. Sharing experience and knowledge whenever possible! Making IT Happen.

View all posts by Andrew Armstrong

4 Comments on “SCCM – WQL Query for devices with specific software installed”

Leave a Reply

Your email address will not be published. Required fields are marked *