← TenantTools365Blogone .sppkg · seven tools
Storage Analyzer · Concept

How SharePoint storage is really calculated: the 1 TB + 10 GB pool, per-site quotas, and the licences that add nothing

Tenant pool, site quotas, what counts, what doesn't, and why the numbers in three admin pages disagree with each other. The reference you wanted before the storage conversation with your director.

Published 2026-08-20 · by HS Services

Three admin pages, three different numbers, and a director asking why "we pay for a terabyte" is not enough. This is the model, in one place.

The pool

Your tenant gets 1 TB, plus 10 GB for every eligible licensed user, as one shared pool for every SharePoint site (including the sites behind Teams). OneDrive is separate: each user has their own 1 TB (or more) that does not touch the pool.

Eligible means most business and enterprise plans (Business Basic/Standard/Premium, E3, E5, and their government and education equivalents). Frontline F1/F3 licences add nothing. A 500-user company with 300 office staff and 200 frontline workers has 1 TB + 3 TB = 4 TB, not 6 TB.

Extra storage is bought as Office 365 Extra File Storage, per GB per month, and simply enlarges the pool.

Site quotas

Within the pool, storage is either automatic (every site can grow until the pool is exhausted; the default) or manual (each site gets a quota; a site at its quota goes read-only for new content while the rest of the tenant keeps working). Manual is more work and much safer: one site of daily exports cannot take the whole company read-only.

Connect-SPOService -Url https://contoso-admin.sharepoint.com
Set-SPOTenant -SiteStorageQuotaMode Manual        # or Automatic
Set-SPOSite -Identity https://contoso.sharepoint.com/sites/Exports -StorageQuota 51200 -StorageQuotaWarningLevel 46080   # MB

What counts

Everything on the site: current file content, every version of every file, both recycle bins, the Preservation Hold Library (if retention applies), list items and attachments, pages and site assets. The number in the admin centre is the sum of all of it.

What people think counts: the files they can see in the document library. That is usually the smallest part.

Why three pages disagree

They are all "right"; they measure different things at different times. When you need one number to act on, use the admin centre total; when you need to know why, use Storage Metrics.

Things that do not count

The conversation with the director, in three lines

  1. We have N TB because of X eligible licences; frontline staff do not add to it.
  2. The three biggest sites are A, B, C; on those, versions and recycle bins are Y% of the total.
  3. We can reclaim Z TB with a version trim and by emptying second-stage bins before we buy anything, and put manual quotas on the export sites so this does not recur.

Filling in Y and Z is the job Storage Analyzer does for free on any site: what you can see versus what you are storing, versions estimated, the remainder attributed to bins and hold library, libraries ranked. Pair it with the twenty-minute triage.

Questions people also ask

How much SharePoint storage does Microsoft 365 include?

1 TB per tenant plus 10 GB per eligible licensed user, pooled. A 100-user tenant on E3 has 2 TB of SharePoint storage in total.

Do frontline licences add SharePoint storage?

No. F1/F3 frontline plans do not contribute the 10 GB per user to the pool.

Why does the SharePoint admin centre show a different storage number than Storage Metrics?

The admin centre shows the site's total usage on a 24–48 hour update cycle. Storage Metrics is per site collection and may be fresher or staler depending on the crawl. Both include versions, recycle bins and hidden libraries; the library view includes none of them.

Can I set a storage limit per SharePoint site?

Yes. In the SharePoint admin centre set site storage limits to Manual, then set a quota per site; automatic mode lets sites grow until the pool is exhausted.