Problem with storage limit (cannot delete and cannot save)

Elsa Park 1 Reputation point
2022-02-16T01:33:24.46+00:00

Hello

when I try to delete some documents to free-up space the following error occurs:
174658-image.png

that mean is "This site has exceeded its maximum file storage limit. To free up space, delete files you don't need and empty the recycle bin."

However, I already deleted everything in the recycle bin.

How can I delete any documents and save new documents.

I don't have license to reach 'Sharepoint admin center' so I can't check to my storage limit and make more storage space.

Please let me know how can delete some documents to recycle bin in this situation.

Microsoft 365 and Office | SharePoint | For business | Windows
Microsoft Teams | Microsoft Teams for business | Other
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. JoyZ 18,111 Reputation points
    2022-02-16T08:37:12.277+00:00

    @Elsa Park ,

    Try to force delete the file using pnp powershell in your onedrive site:

    #Parameter  
    $SiteURL = "https://tenant-my.sharepoint.com/personal/julie_tenant_onmicrosoft_com"  
    $UserName="******@tenant.onmicrosoft.com"  
    $Password= "xxxxxx"  
      
    $SecurePassword = ConvertTo-SecureString -String $Password -AsPlainText -Force  
    $Cred = New-Object -TypeName System.Management.Automation.PSCredential -argumentlist $UserName, $SecurePassword  
      
    #Connect to PnP Online  
    Connect-PnPOnline -Url $SiteURL -Credentials $Cred  
    Remove-PnPFile -ServerRelativeUrl  /personal/julie_tenant_onmicrosoft_com/Documents/beauty1.jpg -Force  
    

    If the issue still exists, we suggest you contact your SharePoint administrator to manage the storage.


    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.



Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.