How to increase OneDrive for Business storage up to 5TB | CloudFronts

How to increase OneDrive for Business storage up to 5TB

You must have known that OneDrive for Business storage has a limitation of 1TB but what if you have utilized the full capacity (1TB). There is no such announcement for the same, but the limit is not 1TB. In this article, we will see how we can increase the storage capacity for OneDrive for Business up to 5TB through PowerShell.

As per one of the Microsoft articles “If your organization has a qualifying Office 365 plan and 5 or more users, you can change the storage space to more than 5TB”. So as per this statement, we can get more than 5TB as well. That means the limitation is not 5TB as well.

Increasing the storage from 1TB to 5TB can be done with the help of your Microsoft 365 Administrator through PowerShell, but going beyond 5TB, you will need the help of Microsoft Support with justification and then it might get increased up to 25TB quota.

Pre-requisites:

  1. Download SharePoint Online Management Shell.
    https://www.microsoft.com/en-us/download/details.aspx?id=35588
  2. Connect to SharePoint Online through PowerShell.
    $adminUPN=”<the full email address of administrator account>”
    $orgName=”<name of your Office 365 organization>”
    Connecting to SPO PowerShell
    $userCredential = Get-Credential -UserName <the full email address of administrator account>
    This is prompt to enter Message, enter the admin account password and hit enter.SPO Admin Credentials
    Connect-SPOService -Url https://$orgName-admin.sharepoint.com -Credential $userCredential
    You will be prompted to provide admin credentials.

    Connect SPO Site

Increasing the storage quota for OneDrive for Business:

  1. Check the current set quota for a user.
    Get-SPOSite -Identity <User’s OneDrive URL> | select $StorageQuota
    Note: – Storage quota is in MB.Check Storage for a user
  2. Change the storage quota for a specific user.
    Set-SPOSite -Identity <User’s OneDrive URL> -StorageQuota $StorageSize
    Note: – Replace $StorageSize with 5242880 (MB) which is 5TB

  3. To verify the change, run cmd Get-SPOSite -Identity <User’s OneDrive URL> | select $StorageQuota
    Set storage for a user
  4. You can also verify the same from Office 365 Admin Center > Active Users > Select User > OneDrive. 
    Verify

This article will help you to increase storage quota for OneDrive for Business up to 5TB without any need of calling Microsoft Support. If you need to increase it more than 5TB then you will need to take help from Microsoft Support with justification. Thanks!


Share Story :

By continuing to use the site, you agree to the use of cookies. more information

The cookie settings on this website are set to "allow cookies" to give you the best browsing experience possible. If you continue to use this website without changing your cookie settings or you click "Accept" below then you are consenting to this.

Close