Forum Discussion
Eduardo Scricco
Oct 23, 2017Brass Contributor
Change Language for AD Synced users
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-all...
Juan Samano
Copper Contributor
Hi Eduardo, currently it seems this topic is not a big priority, however Im facing the same situation in a hybrid environment. Our users cannot change their language because they are synchronizated users using AD Connet.
ThomasNielsen
Dec 12, 2018Brass Contributor
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.
- ndoaaaaOct 10, 2024Copper Contributor
ThomasNielsen optimized for larger datasets (filter at the source):
Get-ADUser -Filter {mail -like "*" -and PreferredLanguage -ne "en-US"} | ForEach-Object { Set-ADUser $_.SAMAccountName -Replace @{PreferredLanguage="en-US"} }