January 2020
Beginner
632 pages
13h 14m
English
If you need to perform this for more than one account, you may wish to do this via PowerShell. To perform this, you'll need the full path to the user's OneDrive site. You can use a tool such as OneDrive for Business Admin Tools (http://aka.ms/OneDriveAdmin) for an individual user site or search for the user's OneDrive for Business site using the following command:
Get-SPOSite -IncludePersonalSite $true -Limit All -Filter {Url -like '-my.sharepoint.com/personal'} | ? { $_.Owner -eq "OneDriveUser@domain.com"}
After connecting to SharePoint Online with the SharePoint Management Shell, run the following command using the value returned in the previous command for the user's OneDrive URL:
Set-SPOUser -Site <OneDrive site> ...
Read now
Unlock full access