A user at Proseware calls the helpdesk reporting they cannot sign in to Microsoft 365. The error message displayed is 'Your account has been locked.' The admin needs to quickly determine whether the lockout is caused by Microsoft Entra Smart Lockout triggering due to too many failed attempts, or whether an administrator has explicitly disabled the user's account. Where should the admin look first to get this information?
Select an answer to reveal the explanation.
Short Explanation and Infographic
Sign-in logs are like a detailed flight recorder for every authentication attempt — they capture the exact error code and reason for failure. Filtering by the user's UPN and looking at the failure reason instantly tells you whether Smart Lockout blocked them (error code 50053) or an admin disabled the account (error code 50057). No guessing required.
Full explanation below image
Full Explanation
The Microsoft Entra Sign-in logs (Monitoring > Sign-in logs) record every authentication attempt with rich details including the UPN, timestamp, application, IP address, and critically — the failure reason and error code. For a locked account: - Error code 50053 indicates Smart Lockout triggered due to too many failed sign-in attempts from a locked IP or too many failed passwords. - Error code 50057 indicates the user account has been administratively disabled. These two root causes produce the same user-facing error message but require completely different remediation, so inspecting the sign-in logs is the definitive first step. Admins can filter by User UPN and Status = Failure to narrow results quickly.
Option A is incorrect because the Microsoft 365 admin center account properties page shows whether a user's account is blocked for sign-in (administratively disabled), but it does not show Smart Lockout state or the specific error that triggered a failed authentication. It also doesn't provide the granular failure reason codes needed to distinguish between the two scenarios. It's a reasonable second step once you know the cause, but not the richest first source.
Option C is incorrect because the Audit log records administrative actions taken on objects (user creation, license changes, group membership changes, policy updates), not user authentication events. A Smart Lockout event or failed sign-in attempt does not generate an Audit log entry — that information lives exclusively in Sign-in logs.
Option D is incorrect because Get-MgUserAuthenticationMethod returns the list of registered authentication methods for a user (phone, Authenticator app, FIDO2 key, etc.). This is useful for diagnosing MFA registration issues, but tells you nothing about why a sign-in attempt failed or whether the account is locked. It's the wrong tool for this symptom.
Exam tip: Know the distinction between Sign-in logs (authentication events, error codes, risk signals) and Audit logs (admin actions on directory objects). Questions about investigating sign-in failures, error codes, or lockouts always point to Sign-in logs. Sign-in logs are retained for 30 days with Microsoft Entra ID P1/P2, or 7 days with free tier.