WQL Query to list all of the machines that have a reboot date timestamp of more than x Day's
Select
Sms_R_System.Name,
Sms_G_System_Operating_System.LastBootUpTime
From SMS_R_System
Inner Join Sms_G_System_Operating_System
On Sms_G_System_Operating_System.ResourceId = Sms_R_System.ResourceId
Where DatePart(DD,Sms_G_System_Operating_System.LastBootUpTime) >= X
Enjoy,
Paddy
0 comments:
Post a Comment