

Fix "An unexpected error has occurred.How to Copy Permissions from One Folder to Another in SharePoint Online using PowerShell?.

How to Add Microsoft Forms to SharePoint Online?.How to Connect to Exchange Online using PowerShell?.SharePoint Online: How to Enable Global Navigation using App Bar?.SharePoint Online: Switch Navigation to Horizontal or Vertical.Hide a Button in SharePoint Online List or document library Toolbar.Switch between Document Libraries with Document Library Dropdown Menu in SharePoint Online and OneDrive.Microsoft Teams: Change Meeting Recording Expiration Policy.SharePoint Online: How to Enable "View in File Explorer" in Microsoft Edge?.Say, you want to increase the storage quota for a particular OneDrive site collection to 2 TB: You may want to either increase or decrease the storage allocation in some situations. How to Set Storage Quota for OneDrive Site Collection?īy default, OneDrive site collections in Office 365 come with a 1 TB storage quota. This script produces a nice CSV report below and gives how much storage OneDrive sites are consuming. $Result | Export-Csv "C:\Temp\OneDrive.csv" -NoTypeInformation StorageQuota_inGB = $Site.StorageQuota/1024 $Result += New-Object PSObject -property = $Site.URL $OneDriveSites = Get-SPOSite -Template "SPSPERS" -Limit ALL -includepersonalsite $True

#Get all Personal Site collections and export to a Text file #Connect to SharePoint Online Admin CenterĬonnect-SPOService -Url $AdminSiteURL -credential $Cred #Get Credentials to connect to the SharePoint Admin Center
