Fixing “Unknown User” in Teams After Account Reactivation
The user mailbox converted to a shared mailbox when he left the organization. It appears that after reactivating a disabled account, we need to manually convert it to a regular mailbox, as this process isn’t automatic.
When a reactivated user appears as “Unknown User” in Microsoft Teams, try these solutions:
Common Causes & Solutions
1. Teams License Not Assigned
Solution:
- Open Microsoft 365 Admin Center → Users → Active Users
- Select the affected user
- Under Licenses and Apps, assign a Teams-enabled license (e.g., Microsoft 365 E3/E5)
- Save changes and wait 15-30 minutes
2. Azure AD Sync Delay
Solution: Force Azure AD sync
Start-ADSyncSyncCycle -PolicyType Delta
Wait 15 minutes after running this PowerShell command on your Azure Connect server.
3. Cached Data in Teams
Client solution:
- Close Teams completely
- Delete cache folder:
- Windows:
%appdata%\Microsoft\Teams - macOS:
~/Library/Application Support/Microsoft/Teams
- Windows:
- Restart Teams
Admin solution (PowerShell):
Connect-MicrosoftTeams
Remove-CsUser -Identity "user@domain.com" -Confirm:$false
Grant-CsTeamsLicensing -Identity "user@domain.com"
4. Missing SIP Address
Solution:
- Check Azure AD → Users → User profile
- Verify these fields are populated:
UserPrincipalNameMailSIP Proxy Address(should look like: sip:user@domain.com)
- If missing, add SIP address via Exchange Admin Center → Recipients → Edit user → Email Addresses
5. Backend Service Delay
Solution: Wait 4-6 hours. If still unresolved:
- Check Service Health in M365 Admin Center
- File support ticket via Microsoft 365 Admin Center
Prevention Tips
- Always reapply licenses after reactivating accounts
- Regularly verify Azure AD sync status with:
Get-ADSyncConnectorRunStatus - Audit SIP addresses during account reactivation
Advanced Troubleshooting
- Run Teams Connectivity Test: https://aka.ms/TeamsTest
- In Teams client, type:
/diagthen run user-specific tests - Check hybrid configuration sync status if using on-prem AD

