A group of Microsoft Products and technologies used for sharing and managing content, knowledge, and applications.
hi,
regardless if the desired configuration might be available OOTB right now, it might be worth to check which parameters the version of the Powershell module you have installed is 'aware' of.
The documentation might refer to the most recent one always.
You can find a list of available versions for the vanilla module of SharePoint Online here: https://www.powershellgallery.com/packages/Microsoft.Online.SharePoint.PowerShell/
To check which one you have installed:
Get-Module -Name Microsoft.Online.SharePoint.PowerShell | select version
To check which parameters are available for a certain cmdlet of a specific module:
get-command -Module Microsoft.Online.SharePoint.PowerShell -Name set-spotenant | select -ExpandProperty Parameters | Select -expandproperty Keys | sort
This approach could give you a few more details – even for other modules.
In your case, if you, for example, have version 16.0.21714.12000 installed there are only two parameters starting with 'OneDrive' available for Set-SPOTenant
- OneDriveForGuestsEnabled
- OneDriveStorageQuota
Once you update to version 16.0.22601.12000 there are a few more :
- OneDriveForGuestsEnabled
- OneDriveLoopDefaultSharingLinkRole
- OneDriveLoopDefaultSharingLinkScope
- OneDriveLoopSharingCapability
- OneDriveRequestFilesLinkEnabled
- OneDriveRequestFilesLinkExpirationInDays
- OneDriveStorageQuota