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() ) <= 15This 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.
About The Author
Discover more from TechyGeeksHome
Subscribe to get the latest posts sent to your email.
