[Solved] How to get a Free 5 TB OneDrive Upgrade for all of your Microsoft 365 Tenants

Andy

Administrator
Creative Team
User ID
1
Joined
7 Jan 2019
Messages
1,121
Reaction score
57
Points
48
If you have a subscription that provides more than 1 TB of storage, you can have 5 TB of OneDrive storage for all users in your Microsoft 365 tenancy. So basically, if you have more than three users with 1 TB of storage, you can get 3 TB of OneDrive storage, but 5 TB of OneDrive storage is the maximum you can get, which requires five users.

These commands require the Microsoft.Online.SharePoint.PowerShell module.

To install the module, Run PowerShell as an Administrator and enter the following command:
Code:
PS C:\WINDOWS\system32> Install-Module -Name Microsoft.Online.SharePoint.PowerShell

Now let's connect to the service (log in using the Microsoft 365 admin user):
Code:
PS C:\WINDOWS\system32> Connect-SPOService -Url https://contoso-admin.sharepoint.com -Credential [email protected]

Run this command to set the OneDrive storage limit for all new and existing users who are assigned a qualifying license to have 5 TB of OneDrive storage:
Code:
PS C:\WINDOWS\system32> Set-SPOTenant -OneDriveStorageQuota 5242880
If you've set specific storage limits for certain users, changing this setting won't affect their storage.

Optionally, you can reset a user's OneDrive storage to make the Microsoft 365 back end re-calculate the usage by running the following command:
Code:
Set-SPOSite -Identity https://contoso-my.sharepoint.com/personal/user_saputra_org -StorageQuotaReset

I hope this tutorial is useful for you, if you have any comments or questions, please post them down below 👇
 
 Short URL:
Back
Top