In Microsoft 365, user accounts can be disabled for many reasons—employee offboarding, license cleanup, security incidents, or temporary access restrictions. As an admin, it’s important to know how to quickly find disabled users so you can review, re-enable, or permanently remove them when needed.
In this guide, we’ll walk you through all the reliable ways to find disabled users in Microsoft 365, using the Admin Center, Entra (Azure AD), and PowerShell.
Find Disabled Users in Microsoft 365
You can identify disabled users using three main methods:
- Microsoft 365 Admin Center (easiest)
- Microsoft Entra Admin Center (detailed)
- PowerShell (best for bulk checks and automation)
Start with the method that fits your role and experience level.
1: Find Disabled Users from Microsoft 365 Admin Center
This is the simplest and most commonly used method.
- Sign in to the Microsoft 365 Admin Center
- Go to Users
- Select Active users
- Click Filters
- Under Sign-in status, select Blocked
- Apply the filter
You’ll now see a list of users whose sign-in access has been disabled.
- Users blocked from signing in
- Accounts disabled manually or by policy
- Users that still exist but cannot access services
2: Find Disabled Users in Microsoft Entra Admin Center
For deeper identity-level details, use Entra (formerly Azure AD).
- Open the Microsoft Entra admin center
- Go to Users
- Select All users
- Click Add filter
- Choose Account enabled
- Set the value to False
- Apply the filter
This shows all accounts where sign-in is disabled at the directory level.
- Shows identity status across all services
- Includes synced and cloud-only users
- Helpful for security and compliance reviews
3: Use PowerShell to List Disabled Users (Recommended for Admins)
PowerShell is ideal if you manage many users or need reports.
- Microsoft Graph PowerShell module installed
- Admin permissions
- Open PowerShell as Administrator
- Connect to Microsoft Graph:
Connect-MgGraph -Scopes "User.Read.All" - Run the following command:
Get-MgUser -Filter "accountEnabled eq false" | Select DisplayName, UserPrincipalName
This command lists all disabled users in your tenant.
4: Find Disabled Users in Hybrid (AD-Synced) Environments
If your organization uses on-premises Active Directory with sync:
- Disabled on-prem AD users sync as disabled in Microsoft 365
- You must re-enable them in Active Directory, not the cloud
- Check user status in Active Directory Users and Computers
- Re-enable the account if needed
- Wait for Azure AD Connect sync (or force sync)
Cloud-only changes won’t override on-prem settings.
Common Reasons Users Are Disabled
Understanding why users are disabled helps avoid confusion.
- Manual admin action
- Employee termination
- Security breach response
- License cleanup
- Conditional Access or sign-in block
- Directory sync from disabled AD account
How to Re-Enable a Disabled User
Once you identify the user, re-enabling is simple.
From Admin Center:
- Select the user
- Click Block sign-in
- Toggle it Off
- Save changes
From Entra:
- Open the user profile
- Set Account enabled to Yes
- Save
Wrapping Up
With that, we wrap up our complete guide on how to find disabled users in Microsoft 365. Whether you’re using the Admin Center for quick checks, the Entra Admin Center for deeper identity management, or PowerShell for bulk reporting, Microsoft 365 provides multiple reliable ways to track disabled accounts.
By regularly reviewing disabled users and understanding why accounts are blocked, you can maintain better security, compliance, and user lifecycle management.