You see a storage quota warning in SharePoint, but the notification points to a site that is not full. The warning appears on a site that has plenty of space left, while the actual site that exceeded its limit stays quiet. This mismatch happens because SharePoint calculates storage at the tenant level, not per site. This article explains why the warning shows on the wrong site and provides the exact steps to identify the real culprit and fix the quota.
Key Takeaways: Storage Quota Warning Misplacement
- SharePoint admin center > Active sites > Storage limit: Check each site’s current storage usage and quota.
- Microsoft 365 admin center > Reports > Usage: View tenant-level storage consumption across all SharePoint sites.
- PowerShell cmdlet Get-SPOSite -Limit ALL: Retrieve storage data for every site in the tenant to find the over-limit site.
Why the Storage Quota Warning Shows on the Wrong Site
SharePoint storage quotas are managed at the tenant level. Microsoft 365 subscriptions come with a base storage pool that all SharePoint sites share. When the total storage used by all sites exceeds the tenant’s available storage, SharePoint sends a quota warning. The warning is attached to a specific site, but it is not always the site that caused the overage.
The root cause is that SharePoint selects a site to display the warning based on internal load-balancing algorithms, not on which site is over its limit. If the tenant pool is full, the warning appears on the site that was most recently modified or has the highest activity. This site may still have free personal quota, but the tenant pool is exhausted. The real problem is that one or more sites have consumed more than their allocated share of the tenant pool, or the tenant pool itself is too small.
How Tenant Storage Pool Works
Each Microsoft 365 tenant starts with 1 TB of base storage plus 10 GB per licensed user. This pool is shared across all SharePoint sites, OneDrive accounts, and Microsoft Teams files. When any site uses more than its individual quota, it does not trigger a warning unless the tenant pool is also full. The warning only fires when the total pool is at or above 100 percent.
Why the Wrong Site Gets the Warning
SharePoint does not have a direct mechanism to pinpoint the exact site that consumed the last few megabytes. Instead, it picks a site that is actively changing. The warning email or admin alert includes a link to that site. This leads administrators to check that site’s quota settings, which look fine, while the real over-consuming site remains hidden.
Steps to Find the Real Site Causing the Storage Warning
To resolve the warning, you must locate the site that is using more than its fair share of the tenant pool. You can do this through the SharePoint admin center or PowerShell.
Method 1: Use SharePoint Admin Center
- Open SharePoint admin center
Go tohttps://admin.microsoft.comand sign in as a SharePoint admin. In the left navigation, select SharePoint. - Go to Active sites
In the SharePoint admin center, click Active sites from the left menu. This lists all site collections in your tenant. - Check the Storage column
Look at the Storage column for each site. It shows the current usage and the quota you set. Sites where usage is near or at the quota are candidates. - Sort by usage
Click the Storage column header to sort sites by usage. The site with the highest usage is likely the one consuming the most tenant pool space. - Review tenant storage
At the top of the Active sites page, click Settings and then Storage. This shows the total tenant storage used and available. If the tenant pool is full, you need to free space or increase it.
Method 2: Use PowerShell to Identify Over-Limit Sites
- Connect to SharePoint Online PowerShell
Open Windows PowerShell as an administrator. RunConnect-SPOService -Url https://[yourtenant]-admin.sharepoint.com. Replace [yourtenant] with your tenant name. - Get all site storage data
RunGet-SPOSite -Limit ALL | Select-Object Url, StorageUsageCurrent, StorageQuota | Sort-Object StorageUsageCurrent -Descending. This lists every site with its current usage and quota, sorted from highest to lowest. - Identify sites over quota
Look for sites whereStorageUsageCurrentis greater thanStorageQuota. Those sites are over their individual quota and consuming extra tenant pool space. - Check tenant pool status
RunGet-SPOTenant | Select-Object StorageQuota, StorageUsageCurrent. This returns the tenant-level quota and usage. IfStorageUsageCurrentis near or aboveStorageQuota, the pool is full.
How to Fix the Storage Quota Warning
After you find the site that is over-consuming, you have three options: increase the tenant pool, increase the site quota, or reduce usage.
Option 1: Increase Tenant Storage Pool
- Go to Microsoft 365 admin center
Navigate tohttps://admin.microsoft.comand select Billing > Purchase services. - Add extra storage
Search for Office 365 Extra File Storage. Each license adds 1 GB of storage to your tenant pool. Purchase the amount you need. - Wait for provisioning
After purchase, the extra storage is added to your tenant pool within 24 hours. The warning disappears automatically.
Option 2: Increase Individual Site Quota
- Select the over-consuming site
In SharePoint admin center > Active sites, click the site URL. - Edit quota
In the site details pane, click Settings > Storage limit. Increase the value to a number higher than the current usage. - Save changes
Click Save. The site quota is updated immediately.
Option 3: Reduce Site Storage Usage
- Identify large files
Go to the over-consuming site. In the document library, switch to All Documents view. Sort by Size descending to find large files. - Delete or archive
Delete files that are no longer needed. Move large files to an archive location such as an external hard drive or a separate storage service. - Empty recycle bins
SharePoint has two recycle bins: site recycle bin and second-stage recycle bin. Empty both to free up space. Go to site contents > Recycle bin > Empty recycle bin.
If the Warning Still Appears on the Wrong Site
The Warning Points to a Site That Is Under Its Quota
This happens when the tenant pool is full but the site itself has free quota. The fix is to increase the tenant pool as described in Option 1. After the tenant pool has enough space, the warning moves to the actual over-consuming site or disappears.
Multiple Sites Show Warnings
If several sites display warnings, the tenant pool is severely over capacity. Check the tenant storage report in Microsoft 365 admin center > Reports > Usage. Identify the top five sites by usage and either increase their quotas or reduce their storage.
PowerShell Shows a Site Over Quota but the Admin Center Does Not
The admin center may not update immediately. Wait 30 minutes and refresh the page. PowerShell returns real-time data. Trust PowerShell results for accuracy.
Tenant Pool vs Site Quota: Key Differences
| Item | Tenant Pool | Site Quota |
|---|---|---|
| Scope | All SharePoint sites, OneDrive, and Teams files | Individual site collection |
| Default size | 1 TB + 10 GB per licensed user | 25 GB per site |
| Triggers warning | Yes, when pool is 100% full | No, site can exceed quota without warning if pool has space |
| How to increase | Purchase Extra File Storage via Microsoft 365 admin | Edit site settings in SharePoint admin center |
| Where to check | Microsoft 365 admin center > Billing > Subscriptions | SharePoint admin center > Active sites > site settings |
Understanding this difference is critical. A site can be over its quota but not trigger a warning if the tenant pool has free space. Conversely, a site under its quota can trigger a warning if the tenant pool is full.
Conclusion
The storage quota warning appears on the wrong site because SharePoint displays the warning on a high-activity site when the tenant storage pool is full. The actual over-consuming site may have free quota but is consuming more than its share of the pool. Use the SharePoint admin center or PowerShell to find the site with the highest storage usage. Then increase the tenant pool by purchasing Extra File Storage, increase the site quota, or reduce storage usage on the offending site. Check the tenant pool status regularly in the Microsoft 365 admin center to prevent future warnings.