Forum Discussion
Ambarish Haridathan
May 30, 2020Copper Contributor
Endpoint Protection not installed on non-Azure servers
Hi all,
I've used the "Onboard servers to Security Center" with a workspace for our non Azure servers. The agent got installed successfully and could see the server on Microsoft Defender ATP as...
Eli
Microsoft
Jun 14, 2020Please search the Log Analytics workspace in which the machine is connected to for the ProtectionStatus logs.
Query to target your computer looks like:
ProtectionStatus
| where Computer has "<your computer name>"check the ProtectionStatusRank. Anything other than 150 indicate unhealthy state.
If no logs return then it might be computer connection to workspace issue, check the 'Heartbeat' on the same query window
- Ambarish HaridathanJun 14, 2020Copper Contributor
Eli The query that shows that the end point not installed is as below:
*removed data that are our environment specific.
ProtectionStatus| where (ComputerEnvironment != "Azure" or isempty(ResourceId)) and (TypeofProtection == "Malicious Software Removal Tool" or TypeofProtection == "No Anti-Malware Tool was detected")| where tolower(SubscriptionId) in ("SUBSCRIPTION_ID") or isempty(SubscriptionId)| summarize AggregatedValue = count() by Computer| limit 1000000000With the query you gave:ProtectionStatusRank 450 ProtectionStatusNot ReportingProtectionStatusDetailsNot reporting - Unable to collect dataSignatureVersionUnknownTypeofProtectionMalicious Software Removal ToolComputerEnvironmentNon-AzureTypeProtectionStatus- EliJun 14, 2020
Microsoft
Not Reporting means just that. How is the Heartbeat?- Ambarish HaridathanJun 14, 2020Copper Contributor
Eli I don't have much expertise on the query part, but found the query
Heartbeat| where TimeGenerated > ago(1h)I could see that the server in question is showing up on this list from the queryIs there anything in specific I should be looking at?