A family of Microsoft on-premises document management and storage systems.
Hi @Lazy Bee
Thank you for posting your question in the Microsoft Q&A forum.
When an account locks out every few minutes, it typically indicates that a service or process is still attempting to authenticate using outdated credentials.
Here are some steps to investigate:
1.Identify the source of bad logons
-On a Domain Controller, check Security logs for Event ID 4740 (Account locked out).
-This event shows the caller computer name and sometimes the process/service.
-If you don’t see 4740, confirm Account Lockout auditing is enabled in Group Policy.
2.Check common places that still use old credentials:
IIS Application Pools
-Even if credentials were previously updated, verify all application pools:
IIS Manager > Application Pools > Advanced Settings > Identity
-Re-enter the password and restart the application pool.
Windows Services
-Services may retry authentication at regular intervals.
-Run in PowerShell:
Get-CimInstance Win32_Service | Where-Object { $_.StartName -like "*ServiceAccountName*" } | Select Name, StartName
-Update credentials and restart affected services.
Scheduled Tasks
-Review Task Scheduler (including hidden tasks) for tasks running under the service account.
-Or via PowerShell:
Get-ScheduledTask | Where-Object { $_.Principal.UserId -like "*ServiceAccountName*" }
-Update credentials or disable outdated tasks.
Stored Credentials (Credential Manager)
Control Panel > Credential Manager > Check Windows Credentials and Generic Credentials > Remove anything referencing SharePoint, SQL, IIS, or old servers.
3.SharePoint remnants
If the account was tied to a SharePoint farm:
-Old farm servers may still be calling endpoints or running timer jobs.
-Review SharePoint ULS logs around lockout times.
-Check SQL connection strings in web.config or appsettings.json.
-Verify SQL Agent Jobs aren’t using the outdated account.
I hope this helps.
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.