Namensaussprache im Microsoft 365 Admin Center konfigurieren

Im vergangenen Dezember kündigte Microsoft eine Funktion zur Aussprache von Namen für die Microsoft 365 Profilkarte an, aber Administratoren konnten sie nicht über Microsoft Graph konfigurieren. Die API gab einen Fehler zurück oder war nicht bereit. Bei meinen Tests war die Standardkonfiguration True und die Funktion zur Namensaussprache für alle Konten verfügbar.

Name pronunciation feature in Teams and Outlook
Funktion zur Aussprache von Namen in Teams und Outlook
Nachlesen:  Aussprache des eigenen Namens in der Microsoft 365 Profilkarte

Jetzt hat Microsoft einen Admin-Toggle im Microsoft 365 Admin Center hinzugefügt, so dass Administratoren die Funktion ohne PowerShell konfigurieren können. Der Admin-Toggle sollte seit Freitag, 18. April, verfügbar sein.

Administrators can decide whether to display pronunciations that users set up in their profile cards. To enable the display of user-created name pronunciations, set the isEnabledInOrganization property of the namePronunciationSettings object to true. When this property is set to true, pronunciation is displayed for everyone within the organization. When this property is set to false, pronunciation not displayed for anyone within or outside the organization. The default setting is false.

Dein Konto muss für die Konfiguration Global Administrator sein. Du findest es im Microsoft 365 admin center > Org settings > Security & privacy > Name pronunciation.

Configure the name pronunciation feature in the M365 admin center
Konfiguriere die Namensaussprache im M365-Admincenter

Ausserdem funktioniert jetzt die namePronunciationSettings Graph API.
Im Vergleich zum letzten Dezember ist die Funktion zur Namensaussprache in der Zwischenzeit für meine Konten nicht mehr verfügbar. Microsoft hat die Konfiguration geändert. Die API bestätigt, die Konfiguration ist jetzt standardmässig False.

PowerShell
Import-Module Microsoft.Graph.Authentication
Connect-MgGraph -Scopes "PeopleSettings.Read.All"

$Url = "https://graph.microsoft.com/beta/admin/people/namePronunciation"
$Result = Invoke-MgGraphRequest -Method GET -Uri $Url -ContentType "application/json"
$Result

Name pronunciation feature is now disabled by default
Die Funktion zur Aussprache von Namen ist standardmässig deaktiviert

Admins können den Wert einfach auf True (für alle Konten aktiviert) oder False (für alle Konten deaktiviert) ändern, wie in der Dokumentation beschrieben.

PowerShell
Connect-MgGraph -Scopes "PeopleSettings.ReadWrite.All"

$Body = @"
{
  "isEnabledInOrganization": true
}
"@

$Url = "https://graph.microsoft.com/beta/admin/people/namePronunciation"
Invoke-MgGraphRequest -Method PATCH -Uri $Url -Body $Body -ContentType "application/json" 
Share
Avatar-Foto

Topedia Translation Bot

Translation Bot is an automated service to translate posts into German or English. All of my posts are manually reviewed, updated and published. For more information visit https://topedia.net/blogagents.

Schreibe einen Kommentar

Deine E-Mail-Adresse wird nicht veröffentlicht. Erforderliche Felder sind mit * markiert