Oct 23 2017 08:36 AM
It looks like AD synced users are not able to change their language... So I have added an entry on UserVoice for this -> https://onedrive.uservoice.com/forums/262982-onedrive/suggestions/31989877-allow-ad-synced-users-to-...
If you agree... please vote! 🙂
Thanks,
Eduardo
Oct 23 2017 10:03 AM
Nov 01 2017 09:24 AM
I can't change it anywhere... Here is a screenshot:
Dec 12 2018 12:07 PM
Dec 12 2018 02:52 PM
Hi there.
The setting must be set in AD for the user (by admin) see more here:
It can be done in PowerShell:
Get-ADUser -Filter * -Properties mail, PreferredLanguage | where { ($_.mail -ne $Null) -and ($_.PreferredLanguage -ne "en-US") } | ForEach-Object {Set-ADUser $_.SAMAccountName –replace @{PreferredLanguage="en-US"}}
This example finds all AD users with a value in the "mail" field and where the the "PreferredLanguage" is not equal to "en-US" and sets it to that value.