Default storage limit for OneDrive online is 1 TB for all the Microsoft 365 users. SharePoint Admin can change the OneDrive’s storage quota limit from the OneDrive Admin Center but that would be for all users. If a user’s OneDrive is reaching the the 1 TB storage limit than SharePoint admin can increase the storage limit for that user using Microsoft 365 Admin Center and by using SharePoint online PowerShell.

User can view their storage limit by going to OneDrive Settings à More Settings and click on Storage Matrix.

Retrieve OneDrive URL

A user can access his/her OneDrive’s URL directly through brownser by login into Microsoft 365 Tenant. A SharePoint Admin can access it through multiple ways which explained on this blog post. Below is a small PowerShell script which will return of all OneDrive sites

Import-Module Microsoft.Online.SharePoint.PowerShell
$TenantUrl = "https://mstalk-admin.sharepoint.com"
Connect-SPOService -Url $TenantUrl
$OneDriveURLs = 
Get-SPOSite -IncludePersonalSite $true -Limit all 
    -Filter "Url -like -my.sharepoint.com/personal/" | select Title,Url,Owner,StorageUsageCurrent| Out-GridView 

Change user’s OneDrive for Business storage using Microsoft 365 Admin Center

Go to Active users and search for the user. Click on the user’s name for details and select OneDrive Tab and click on Edit button Under Storage used.

Change user’s OneDrive for Business storage using PowerShell

Use below SharePoint online PowerShell to update the storage limit for a user:

Import-Module Microsoft.Online.SharePoint.PowerShell
$TenantUrl = "https://mstalk-admin.sharepoint.com"

$OneDriveSite = "https://mstalk-my.sharepoint.com/personal/adnan_amin_mstechtalk_com"
#Enter the OneDrive Storage Quota in MB 
$OneDriveStorageQuota = "2097152" 
#Enter the OneDrive Storage Quota Warning Level in MB
$OneDriveStorageQuotaWarningLevel = "2097152" 
Set-SPOSite -Identity $OneDriveSite -StorageQuota $OneDriveStorageQuota -StorageQuotaWarningLevel $OneDriveStorageQuotaWarningLevel 

Adnan is six time Microsoft MVP (Since 2015) with over 16 years of extensive experience with major expertise on SharePoint, SharePoint based development, Microsoft 365, Microsoft Teams, .Net Platform and Microsoft BI. He is currently working Sr Microsoft Consultant at Olive + Goose. He is MCT Regional Lead for Pakistan Chapter since 2012. He is working on SharePoint for past 12 years and worked on different intranet/intranet solutions for private & govt. sector majorly in United states and Gulf region and have experience of working with multiple Fortune 500 companies. He is a trainer, technology evangelist and also speaks in community forums.

Leave a Reply