Have a Question?
< All Topics
Print

How to Increase O365 OneDrive from 1TB to 5TB

Steps on how to increase O365 OneDrive from 1TB to 5TB

Individual Users are assigned with 1TB of Storage Quota for OneDrive, by default and it can be increased to 5TB without additional charges

  1. Login to SharePoint Online with PowerShell

  2. List all users’ URL for OneDrive

#List All Users URL
Get-SPOSite -IncludePersonalSite $true -Limit all -Filter "Url -like '-my.sharepoint.com/personal/'" | Select -ExpandProperty Url 
  1. Verify existing OneDrive Quota for identified user
#Check OneDrive Quota 
$UserURL = "https://aventistech-my.sharepoint.com/personal/kmwong_aventistech_com"
Get-SPOSite -Identity $UserURL 

Url                                                                   Owner                  Storage Quota
---                                                                   -----                  -------------
https://aventistech-my.sharepoint.com/personal/kmwong_aventistech_com [email protected]       1048576
  1. Increase O365 OneDrive from 1TB to 5TB
# Default 1048576 for 1 TB and can be increased to 5242880 for 5 TB
Set-SPOSite -Identity $UserURL -StorageQuota 5242880

Verification from User’s Side

Instruct user to logoff & login again to OneDrive for the new settings to be applied

Right click on OneDrive and Select Settings

Increase O365 OneDrive from 1TB to 5TB

User’ O365 OneDrive is increased from 1TB to 5TB successfully

Increase O365 OneDrive from 1TB to 5TB

Reference Links https://docs.microsoft.com/en-us/onedrive/set-default-storage-space

Table of Contents
Scroll to Top