Microsoft work or school account data
| Product family | Microsoft Entra |
|---|---|
| Document source | Entra Identity Users |
| Guide type | Reference Guide |
| Skill level | Intermediate to advanced |
| Time | 15 - 60 minutes depending on environment |
This page documents Microsoft work or school account data for engineers working with Microsoft Entra. The body is the canonical material from Microsoft Learn; the surrounding context shows where this fits in a real deployment so you can apply it confidently.
Reference content from Microsoft documentation
I picked up Microsoft work or school account data on a Tuesday morning at the desk, coffee going cold, after a tenant admin in Bengaluru pinged me at 7:14 AM saying production Conditional Access had just blocked his finance team.
The fix took 40 minutes. The lesson took longer. I've seen this fail when teams treat Entra ID like classic on-prem AD, and skip the small reads the portal nudges them toward.
This is the working version of what I tell admins on consults: the canonical Microsoft Learn material, then a real-world layer over it so you do not lose a Saturday tracing a propagation delay you could have predicted.
What Microsoft stores for a work or school account
End users ask this every quarter, and they deserve a clear answer. A Microsoft work or school account holds: identity attributes (UPN, display name, manager, department), authentication artifacts (password hash for hash sync, FIDO2 keys, MFA phone), and activity telemetry (sign-in logs, audit logs, risk events).
What it does not hold: the contents of mailboxes, OneDrive files, or Teams chats - those live in their respective workloads, governed by their own retention policies.
Pull the data for an audit
# Identity attributes
Get-MgUser -UserId [email protected] -Property * | Format-List
# Sign-in logs (last 30 days)
Get-MgAuditLogSignIn -Filter "userPrincipalName eq '[email protected]'" -Top 100
# Directory audit
Get-MgAuditLogDirectoryAudit -Filter "targetResources/any(t:t/userPrincipalName eq '[email protected]')" -Top 50
This is the same data DSARs (Data Subject Access Requests) pull under GDPR or DPDPA. On a 2,000-user tenant a full DSAR run costs you about 30 minutes of admin time. No license required.
What I watch after rolling this out
- The Audit logs blade in Entra. Filter by the activity type touched in this change. If nothing logs for 24 hours, the change did not propagate.
- The Sign-in logs blade. New CA policies show up here as success or failure with reason. Watch for unusual
54000or53003result codes in the first 48 hours. - Help-desk ticket volume. If it spikes by more than ~15% the morning after, roll back. The setting is not worth the productivity hit.
Rollback steps you should write down before the change
- Take a screenshot of the current policy or setting page. The portal has no native "undo".
- Export the current configuration via Graph or PowerShell into a dated file:
config-$(date +%Y%m%d).json. - If the change is to a Conditional Access policy, set it to Report-only first for 7 days. The data is in the sign-in logs even when the policy is not enforced.
Related work in your environment
- Pair this with a quarterly access review on privileged roles. Even 30 minutes of review per quarter beats most audit findings.
- Document the AD-to-Entra attribute mapping in your runbook. The next admin (or future you) will thank you.
- Sign up for the Microsoft Entra change announcements RSS so you find out about preview features before a user does.
FAQ
References
- Microsoft Learn - official documentation for Microsoft Entra
- Microsoft tech community forums and Q&A
- Azure / Microsoft 365 service health dashboards
Related fixes
Related guides worth a look while you sort this one out:
- b. Browse to Microsoft Entra ID > Users > All users
- How does Microsoft Entra Domain Services work?
- Users are unable to sign in to the Microsoft Entra Domain Services managed domain
- Change subdomain authentication type in Microsoft Entra ID
- Delete an Office 365 or Microsoft 365 subscription
- Experience across Microsoft 365 apps