Changing the display language of Loop on the web

In Microsoft Cloud products the source of language configuration isn’t always consistent. Loop on the web uses the language preference from “My Account” or the Entra ID account.

Configure the display language in “My Account
Configure the display language in “My Account

It is the property preferredLanguage in the Entra ID account…,

preferredLanguage in Entra ID Konto
preferredLanguage in Entra ID Konto

…customizable via PowerShell and Microsoft Graph.

PowerShell
$Body = @"
{ "preferredLanguage": "de-CH"  }
"@

Import-Module Microsoft.Graph.Authentication
Connect-MgGraph -Scopes User.ReadWrite
$Url = "https://graph.microsoft.com/v1.0/users/<UserPrincipalName>"
Invoke-MgGraphRequest -Method PATCH $Url -Body $Body -ContentType "application/json" 


After making the adjustment, synchronization between products may take some time. Re-logging accelerates the process.

Share
Avatar photo

Tobias Asböck

Tobias is a Senior System Engineer with around ten years of professional experience with Microsoft 365 products such as SharePoint Online, OneDrive for Business, Teams Collaboration, Entra ID, Information Protection, Universal Print, and Microsoft 365 Licensing. He also has 15+ years of experience planning, administering, and operating SharePoint Server environments. Tobias is a PowerShell Scripter with certifications for Microsoft 365 products. In his spare time, Tobias is busy with updates in the Microsoft 365 world or on the road with his road bike and other sports activities.

Leave a Reply

Your email address will not be published. Required fields are marked *