Microsoft 365

Microsoft 365 E3 vs E5: the three cliff edges that actually justify the uplift

Most of the comparison is noise. Three capabilities genuinely stop at E3, and the largest saving is usually in the opposite direction entirely.

Microsoft 365 E3 vs E5: the three cliff edges that actually justify the uplift. Microsoft 365 article banner on grbadhon.com

The E3 to E5 conversation is usually had backwards. People compare feature lists, decide E5 looks better, and then discover the uplift was justified by two capabilities they could have bought as a much cheaper add-on. Work from the cliff edges instead.

What E3 already covers

More than most people assume, which is why the uplift often fails to pay for itself. On the compliance side alone, E3 covers Audit (Standard), manual sensitivity labelling, retention label creation, and retention policies scoped organisation-wide, location-wide, or with include and exclude lists.

If your compliance requirement is “retain mail for seven years and be able to search it”, E3 does that. No uplift required.

The three cliff edges that actually justify E5

These are the points where E3 genuinely stops rather than merely doing less.

Capability Why it is a cliff, not a gradient
Adaptive policy scopes Retention works on E3. Adaptive scoping, which keeps a policy correctly targeted as people join and leave, does not. On a static org you will not notice. On one with turnover, the alternative is somebody maintaining membership by hand.
Audit (Premium) E3 gives you Audit (Standard). One year retention and the crucial events used in real investigations need Premium. Ten year retention needs a further add-on on top of that.
Automatic labelling Manual labelling is E3. Auto-application by trainable classifier is not. Any labelling programme that depends on users choosing correctly at scale will not hold, so this is the one that decides whether a data protection programme is real.

Worth knowing

If two of those three are what you are buying, price the Microsoft Purview Suite add-on against the full E5 uplift before deciding. Purview Suite is £9.20 per user per month on an annual subscription, excluding VAT, and sits on top of E3. E5 also brings Defender P2, Entra ID P2 and Teams Phone, so the question is whether you need the security and telephony half at all.

Where the money usually is, and it is not the uplift

One line in Microsoft’s service description is worth more than most licensing reviews. For shared locations such as SharePoint sites, Microsoft 365 Groups and Teams channel messages, users holding owner or member roles need the licence. Users with visitor or view-only roles do not.

In an estate with a large read-only population, that single distinction is often larger than the E3 to E5 delta you were arguing about.

Two things that fail without telling you

Most licensing gaps present as a blocked button. These two do not, which is why they survive licensing reviews.

Customer Key reverts to default encryption. Data encryption policies apply at tenant level, so the tenant needs at least as many Customer Key licences as it has users assigned Exchange or Teams licences, whichever is greater, with SharePoint counted separately. Microsoft validates periodically. If you are short, encryption quietly falls back to the default service encryption while the configuration stays exactly where you left it.

Shared and resource mailboxes need licences to receive several features, despite nobody signing into them. Inactive mailboxes do not. Estates that lean on shared mailboxes accumulate silent non-coverage this way.

Auditing what you already own

Do this before any renewal conversation. SKU display names are unreliable and marketing names change; service plan names do not.

Get-LicenceHeadroom.ps1
# Requires Microsoft.Graph.Identity.DirectoryManagement.
Connect-MgGraph -Scopes ‘Organization.Read.All’

Get-MgSubscribedSku -All |
    Select-Object SkuPartNumber,
                  @{ n = ‘Purchased’; e = { $_.PrepaidUnits.Enabled } },
                  ConsumedUnits,
                  @{ n = ‘Unused’;    e = { $_.PrepaidUnits.Enabled – $_.ConsumedUnits } },
                  @{ n = ‘Waste%’;    e = {
                        if ($_.PrepaidUnits.Enabled -gt 0) {
                            [math]::Round( (($_.PrepaidUnits.Enabled – $_.ConsumedUnits) / $_.PrepaidUnits.Enabled) * 100, 1 )
                        } else { 0 }
                  } } |
    Sort-Object Waste% -Descending |
    Format-Table -AutoSize

Anything above roughly 10 per cent unused is either a migration remnant or a renewal nobody questioned. Fix that before you argue about tiers.

What I would do

Write down the three capabilities you will genuinely operate in the next six months. Find each one in Microsoft’s service description and read the exact plan column rather than a comparison chart. Two of the three are usually already covered by E3.

If the third is a compliance capability, price Purview Suite against E5 before committing. If it is Defender P2 or Entra ID P2, E5 is probably the cleaner answer. Either way, run the headroom script first, because unused licences are found money and they do not require a negotiation.

Common questions

On the compliance side the meaningful additions are adaptive policy scopes, Audit (Premium) with one year retention, automatic labelling by trainable classifier, Communication Compliance and Insider Risk Management. E5 also adds Defender P2, Entra ID P2 and Teams Phone, which is often the real justification.

It depends what you need. Microsoft Purview Suite, formerly E5 Compliance, is £9.20 per user per month annually excluding VAT and sits on top of E3. If you only need the compliance capabilities it is usually the cheaper route. If you also need Defender P2, Entra ID P2 or Teams Phone, E5 is normally better value.

No. For shared locations such as SharePoint sites, Microsoft 365 Groups and Teams channel messages, only users with owner or member roles need the licence. Visitor and view-only roles do not. In estates with large read-only populations this is often the single biggest saving available.

Yes. Organisation-wide, location-wide, and include or exclude scoped retention policies all work on E3, as does retention label creation. What needs E5 or Purview Suite is adaptive policy scopes, which keep the policy correctly targeted automatically as people join and leave.

Encryption reverts to the default service encryption. The tenant needs at least as many Customer Key licences as it has users assigned Exchange or Teams licences, whichever is greater, with SharePoint counted separately. Microsoft validates periodically and the configuration remains in place while the protection stops.