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

sql2016

Table of Contents

Last updated on March 30th, 2023 at 06:06 pm

Read Time:49 Second

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]

Discover more from TechyGeeksHome

Subscribe to get the latest posts to your email.

Leave us a message...

This site uses Akismet to reduce spam. Learn how your comment data is processed.