It is not reflecting the quota for OneDrive

sns 9,226 Reputation points
2023-02-06T09:03:34.17+00:00

It is not reflecting the quota for OneDrive, Please suggest

I tried refreshing the page but no luck

User's image

It is SharePoint online.

OneDrive
OneDrive
A Microsoft file hosting and synchronization service.
962 questions
SharePoint
SharePoint
A group of Microsoft Products and technologies used for sharing and managing content, knowledge, and applications.
10,249 questions
{count} votes

Accepted answer
  1. Haoyan Xue_MSFT 22,231 Reputation points Microsoft Vendor
    2023-02-07T01:59:01.17+00:00

    Hi @sns ,

    Use this Powershell ,then refresh the page. It will change the maximum storage for onedrive for this user.

    #Parameters
    $TenantAdminURL = "https://domian-admin.sharepoint.com"
    $OneDriveSiteURL = "https://domian-my.sharepoint.com/personal/xyza_domian_onmicrosoft_com"
     
    #Connect to Admin Center
    Connect-SPOService -Url $TenantAdminURL -Credential (Get-Credential)
     
    #Increase OneDrive site storage space
    Set-SPOSite -Identity $OneDriveSiteURL -StorageQuota 6144 #6GB
    

    User's image


    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.


1 additional answer

Sort by: Most helpful
  1. Rafael da Rocha 5,091 Reputation points
    2023-02-06T11:09:09.88+00:00

    Hello,

    this sets the default for new accounts.

    If this account already existed when you ran the command, you'll need to run

    Set-SPOSite -Identity <user's OneDrive URL> -StorageQuotaReset