a user is always reporting that one of the polling engine was causing his Active Directory account to locked out. upon checking on the server there was no created profile under his account.HOw can i resolve the lock out
Hi @oluap ,
The Active Directory account lockout is most likely caused by an outdated or misconfigured credential being used silently by a polling engine. Use SWQL, services/task checks, and credential management to trace and remove any use of that AD account. Enable AD auditing if needed for deep trace.
Cause Possibilities:
Credential used in Scheduled Tasks, Services, or Scripts on the polling engine
Old WMI/Windows credentials saved in:
Application Monitor templates (SAM)
Scheduled discoveries
Device connection profiles (NCM)
Agent-based monitoring trying to authenticate using wrong credentials
Orion Platform Credential Store (shared credentials) referencing the user's AD account
What to do:
SELECT CredentialID, Name, CredentialOwner, CredentialType FROM Orion.CredentialWHERE Name LIKE '%username%' OR CredentialOwner LIKE '%username%'
%username%
In SAM Application Templates
In Discovery Profiles (Settings → Network Discovery → Manage Discoveries)
In NCM Connection Profiles
services.msc
Scripts
Hope this helps.
Thank You Ronan
it works thank you for your help