Help desk teams often need to check OneDrive for Business storage quotas for specific users. You go to the Microsoft 365 admin center, open the OneDrive storage quota report, and the user you are looking for is not listed. This happens because the report only shows users who have already synced data to OneDrive. Users who have never opened OneDrive or saved a file to it do not appear in the default report. This article explains why users are missing from storage quota reports and provides step-by-step fixes to find and manage quotas for any user in your tenant.
Key Takeaways: Finding and Managing OneDrive Storage Quotas for Missing Users
- Microsoft 365 admin center > Reports > Usage > OneDrive: Shows storage used by users who have synced files; empty or inactive users are not listed.
- Microsoft 365 admin center > Users > Active users > OneDrive tab: Lets you view and change storage quota for any licensed user even if their OneDrive is empty.
- SharePoint Online Management Shell: PowerShell command Get-SPOSite -IncludePersonalSite $true retrieves all OneDrive sites including unprovisioned or empty ones.
Why the OneDrive Storage Quota Report Is Missing Users
The default OneDrive storage quota report in the Microsoft 365 admin center pulls data from the OneDrive sync client and the SharePoint Online service. It only displays users who have an active OneDrive site. A user gets an active OneDrive site the first time they sign in to OneDrive or save a file to their OneDrive folder. Users who have a license but have never performed either action do not have a site provisioned. The report skips them entirely.
Another cause is that the report filters by users who have consumed storage. If a user has 0 bytes of storage used, the report may not show them in the default view. The admin center report uses a threshold that excludes zero-consumption accounts to keep the list manageable for large tenants.
A third cause involves delegated administration. Help desk teams with limited roles such as Helpdesk Administrator or User Administrator can see user properties but may not have the SharePoint admin permissions required to read OneDrive site data. Without the SharePoint Admin role or the Groups Administrator role, the storage quota section remains blank for those users.
Steps to Find and Fix Missing Users in OneDrive Storage Quotas
Use the following methods to locate any user in your tenant and manage their OneDrive storage quota.
Method 1: Use the Active Users Page in the Admin Center
- Open the Microsoft 365 admin center
Go to admin.microsoft.com and sign in with an account that has the Global Administrator or SharePoint Administrator role. - Navigate to Active Users
In the left navigation, select Users and then Active users. - Search for the missing user
Type the user’s display name or email address in the search box. Click the user name to open their properties panel. - Open the OneDrive tab
In the user properties panel, select the OneDrive tab. If the user has no OneDrive site, you see a message that the site is not provisioned. - Provision the site or change the quota
Click Create OneDrive to provision a site for the user. After the site is created, you can set a custom storage quota in the same tab under Storage limit.
Method 2: Use SharePoint Online Management Shell
- Install the SharePoint Online Management Shell
Open Windows PowerShell as an administrator. RunInstall-Module -Name Microsoft.Online.SharePoint.PowerShelland confirm the installation. - Connect to SharePoint Online
RunConnect-SPOService -Url https://yourtenant-admin.sharepoint.com. Replaceyourtenantwith your tenant name. Sign in with a Global Administrator or SharePoint Administrator account. - Get all OneDrive sites including empty ones
RunGet-SPOSite -IncludePersonalSite $true -Limit All | Where-Object {$_.Template -eq 'SPSPERS'}. This command returns every OneDrive site in the tenant, including sites with zero storage. - Filter for the specific user
RunGet-SPOSite -IncludePersonalSite $true -Limit All | Where-Object {$_.Owner -eq 'user@domain.com'}. Replace the email address with the user you need. - Check the storage quota
In the output, look for the StorageQuota property. It shows the quota in megabytes. If the site does not appear, the user has no OneDrive site provisioned.
Method 3: Use the SharePoint Admin Center
- Open the SharePoint admin center
Go to admin.microsoft.com, expand Admin centers, and select SharePoint. - Go to Active sites
In the left navigation, select Policies and then Active sites. - Search for the user’s OneDrive site
In the search box, type the user’s name or email. OneDrive site URLs follow the patternhttps://yourtenant-my.sharepoint.com/personal/user_domain_com. - Edit the storage quota
Select the site from the list. In the properties panel, find Storage limit and enter a new value in GB. Click Save.
If the User Still Does Not Appear After the Main Fix
The user has no OneDrive license assigned
OneDrive for Business requires a SharePoint Online license or a Microsoft 365 plan that includes SharePoint. Go to Microsoft 365 admin center > Users > Active users. Select the user, open the Licenses and apps tab, and confirm that SharePoint Online is toggled on. If it is off, turn it on and wait 30 minutes before checking again.
The help desk role lacks SharePoint permissions
The built-in Helpdesk Administrator role does not include permission to read OneDrive site storage. Assign the SharePoint Administrator role or the Groups Administrator role to the help desk account. Go to Microsoft 365 admin center > Roles > Role assignments. Search for SharePoint Administrator, select it, and add the help desk user.
The user’s OneDrive site is in a quarantined state
If a user’s OneDrive site was quarantined due to suspicious activity, the site does not appear in the storage report. Go to SharePoint admin center > Policies > Active sites. Look for a site with the status Quarantined. Select the site and click Restore. After restoration, the site appears in the quota report.
| Item | Method 1: Active Users Tab | Method 2: PowerShell |
|---|---|---|
| Permissions needed | Global Admin or SharePoint Admin | Global Admin or SharePoint Admin |
| Shows unprovisioned users | Yes, with option to create site | Yes, but only after provisioning |
| Shows zero-storage users | Yes, if site exists | Yes, with -IncludePersonalSite $true |
| Bulk quota change | No, one user at a time | Yes, with Set-SPOSite -StorageQuota |
Help desk teams can now locate any missing user in OneDrive storage quota reports by using the Active Users tab, PowerShell, or the SharePoint admin center. The Active Users tab is the fastest method for single users. Use PowerShell when you need to check or modify quotas for many users at once. As an advanced tip, run Get-SPOSite -IncludePersonalSite $true | Export-Csv onedrive-sites.csv to export all OneDrive sites to a CSV file for offline auditing.