SCCM – WQL Query for machines with a valid Hardware Scan in the last x days

sql2016
sql2016

Table of Contents

Estimated reading time: 1 minutes

If you would like to identify the machines that have had a valid hardware inventory scan within the last x amount of days, you can use this WQL query as per below.

select  
      SMS_R_System.Name,   
      SMS_G_System_WORKSTATION_STATUS.LastHardwareScan   
 from SMS_R_System  
      inner join SMS_G_System_WORKSTATION_STATUS  
      on SMS_G_System_WORKSTATION_STATUS.ResourceId = SMS_R_System.ResourceId  
      where DateDiff(dd,SMS_G_System_WORKSTATION_STATUS.LastHardwareScan,GetDate() ) <= 15

This query is defaulted to 15 days, however you can just change this number to reflect the amount of days you want to look back on.

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

Leave a Reply

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