This SQL query will list all of the resources that are marked as Unhealthy as determined by the SMS client Health Utility.
SQL Query:
Select Distinct
Name 'Machine Name',
LastUser 'Last Logged On User',
WasOnline,
LastPingResult State,
Classification Status
From ClientHealthResults
Where LastPingResult Is Not Null
And Classification = 'UnHealthy'
No Comments