Microsoft Entra

Microsoft work or school account data

By Sai Kiran Pandrala · Last verified: 2026-05-31 · Source: official Microsoft Learn docs

At a glance
Product familyMicrosoft Entra
Document sourceEntra Identity Users
Guide typeReference Guide
Skill levelIntermediate to advanced
Time15 - 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

Rollback steps you should write down before the change

  1. Take a screenshot of the current policy or setting page. The portal has no native "undo".
  2. Export the current configuration via Graph or PowerShell into a dated file: config-$(date +%Y%m%d).json.
  3. 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.

FAQ

Where does this microsoft work or school account data content come from?
It is sourced from the official Microsoft Learn documentation for Microsoft Entra. Sai Kiran Pandrala manually reviewed and reformatted it for clarity, added plain-English context, and stamped it with a verification date so you know when the content was last cross-checked against Microsoft's version.
How often is this reference updated?
Microsoft updates Microsoft Entra documentation continuously. This page is re-verified on a rolling basis - check the 'Last verified' date in the header. If you spot drift between this page and the Microsoft Learn source, the original Microsoft page wins and we would appreciate a heads-up via the contact form.
Can I use microsoft work or school account data information for production planning?
Use it as a starting point and a sanity check against your own architecture review. For production decisions on Microsoft Entra, always pair it with: your tenant's specific SKU and region, your compliance constraints, and Microsoft's own service health and pricing pages at the time of decision.
Why is this reference free?
HowToFixMe is ad-supported. There are no paywalls, no email signups, no signup-to-read patterns. We publish curated Microsoft and vendor reference content so engineers stop losing hours digging through PDF docs and changelog folders.
Where can I read the original Microsoft source?
On the Microsoft Learn portal under Microsoft Entra. Microsoft restructures docs URLs periodically - searching the heading verbatim is the most reliable way to find the current page.

References

Related guides worth a look while you sort this one out: