Wondering how to get how much storage is taken by what folder of your OneDrive personal sharepoint site?
Just a couple clicks to get to your storage metrics:
https://yourorg-my.sharepoint.com/personal/username_companyname_org/_layouts/15/storman.aspx
Storman.aspx gets you the info. You can even drill down to your folder to get check the usage details.
Pretty cool eh!
Now, to get the storage size of your OneDrive documents via powershell. Login to SharePoint Online Administration Shell with your admin credentials.
connect-sposervice “https://tenant-admin.sharepoint.com”
Get–SPOSite “https://tenant-my.sharepoint.com/personal/user_name_tenant_onmicrosoft_com” –Detailed | select url, storageusagecurrent, Owner
|