January 2020
Beginner
632 pages
13h 14m
English
If you need to do this for more than one account, you may wish to do so via PowerShell. To do this, you'll need the full path to the user's OneDrive site. You can use a tool such as the OneDrive for Business Admin Tools (http://aka.ms/OneDriveAdmin) to get a site for an individual user, 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 while using the value that was returned in the previous command for the user's OneDrive URL:
Set-SPOUser -Site <OneDrive ...
Read now
Unlock full access