← TenantTools365Blogone .sppkg · seven tools
Storage Analyzer · Cost

What actually happens when SharePoint storage hits 100% (and the twenty-minute triage before you buy more)

Sites go read-only, uploads fail, and Microsoft's add-on is billed per GB per month. Most tenants can reclaim more than they would buy — here is the order to check before you spend.

Published 2026-08-17 · by HS Services

The banner appears on Monday. By Wednesday someone from finance is asking why their upload failed, and the quote for extra storage is on your desk. Before you sign it, here is what is actually happening and what twenty minutes of triage usually finds.

What "full" does

The pool is 1 TB + 10 GB per licensed user (E3, E5, Business Standard and similar; F-plan frontline licences add nothing). A 200-user company has 3 TB.

What extra storage costs

Microsoft sells Office 365 Extra File Storage by the GB, per month, forever. At list price it is around $0.20 per GB per month; check your agreement. 1 TB is therefore roughly $200 a month, $2,400 a year, and it never stops.

Most tenants that hit the wall are storing far more than that in things nobody wants.

The twenty-minute triage

1. Which sites (2 min). SharePoint admin centre → Active sites → sort by Storage used. Or:

Connect-SPOService -Url https://contoso-admin.sharepoint.com
Get-SPOSite -Limit All | Sort-Object StorageUsageCurrent -Descending | Select-Object -First 10 Url, StorageUsageCurrent

Three sites are usually most of it.

2. Versions on those sites (5 min). Storage Metrics on each (/_layouts/15/storman.aspx), or the version audit. If versions are more than half, a trim reclaims it without deleting a single file. Run the what-if first; then New-SPOSiteFileVersionBatchDeleteJob.

3. Second-stage recycle bins (3 min). Site collection admin → Recycle bin → Second-stage. Deleted content that someone already decided they did not want, still counting. Emptying it is permanent, so confirm the 93-day expectations with the site owners.

4. Preservation Hold Libraries (3 min). Sites under retention policies keep copies of everything deleted or edited. You cannot empty these (that is the point of the policy), but you can find out that a two-year hold on a site of daily exports is the cause and take that to compliance.

5. Orphaned and inactive sites (5 min). Admin centre → Active sites → sort by Last activity. Sites untouched for a year can be archived with Microsoft 365 Archive (much cheaper per GB than active storage) or deleted (93-day safety net).

6. Single-file writers (2 min). One file with thousands of versions is a flow or a refresh loop. Fix it or the space comes back.

When you should just buy it

Buying a month to cover the triage, then cancelling, is a legitimate move.

Seeing the triage in one view

Storage Analyzer shows, per site, what you can see versus what you are storing, the version-history estimate, the unaccounted-for remainder (bins and hold library), and libraries ranked largest first. It is free and read-only, so it is safe to hand to site owners so the question "why is our site full?" stops landing on you. The trim itself is TrimVersions365.

Questions people also ask

What happens if SharePoint storage is full?

Sites at their quota become read-only for uploads and edits that add content; users see "storage limit exceeded" errors. Existing content stays readable. When the whole tenant pool is exhausted, all sites are affected until space is freed or storage is added.

How can I increase my SharePoint storage limit?

Buy Office 365 Extra File Storage (per GB per month) in the Microsoft 365 admin centre, add licences (each adds 10 GB to the pool), or free space by trimming versions, emptying second-stage recycle bins and archiving sites.

How is SharePoint storage calculated?

1 TB per tenant plus 10 GB per licensed user, pooled across all sites. Frontline (F) licences do not add to the pool. Per-site quotas are set by admins within that pool.

Does deleting sites free up SharePoint storage?

Deleted sites are kept for 93 days in the admin centre recycle bin but do not count toward the tenant total while there. Permanently deleting is not required to reclaim the space.