Tag: Azure Active Directory

  • Display language in Hybrid environment

    In a cloud environment, you can change your display language on Microsoft 365 (https://www.office.com) when you click on the gear icon on the top right of the page, and then selecting “Change your language”.

    Office.com – Change your language

    For users in a Hybrid environment, the possibility to chose the display language is greyed out.

    Office.com – Change display language greyed out

    In order to change the Display language, the user needs to contact the administrator of his organisation, which can then change the language to the preferred language in Active Directory.

    The administrator needs to change the attribute “preferredLanguage” to the preferred language code under the users properties (Attribute Editor), in Active Directory Users and Computers.

    Active Directory Users and Computers – User properties – Attribute Editor

    After setting this value to the prefered value, it will take some time before this value is synced to Azure Active Directory, and take effect for the user in Office.com.

    To speed up this proces, you can trigger a Delta sync from the server which contains the “Azure AD Connect” application.

    Open a elevated Powershell Prompt on that machine, and type in the following code:

    Start-ADSyncSyncCycle -PolicyType Delta
    PowerShell – ADSync

    Once the sync is completed, you should see the same value as you set under “preferedLanguage” in the properties of the user in Active Directory, appear in the Azure Active Directory admin center in “Overview” – “Properties”:

    Azure Active Directory admin center – Preferred language

    Next time the user in question logs in on Office.com, the language should be changed to the set value.

  • Update User Data

    GitHub

    mattiasvdlbe/Azure Active Directory/UpdateUserData

    Why?

    After updating the user data of a big list of users in Active Directory, we noticed the Usage Location was not updated in Azure Active Directory.
    For this I created another script which goes over the same .csv file as the script did which updated the AD information.

    What?

    See my post about the script which I created to update the Active Directory User data.

    This script loads in the same .csv file and loops over all users in the file and updates the necessary fields.