Affichage de l'auteur d'un RDV sur les étiquettes calendrier outlook 2021 - Meeting Organizer's Name Appears in the Subject line
Bonjour,
Problème d'affichage sur les étiquettes du calendrier en vue jour, semaine, mois.
Le nom de l'auteur d'un rendez-vous apparait lorsqu'il y a une invitation…
Screenshot entre le webmail et Outlook 2021:
> An administrator asked:
> >We're using Exchange with a mixture of Outlook clients. Meetings are showing up on the Resource Room calendars with the meeting organizer's name in the subject line. How do we remove it?
> >This is an Exchange issue, not Outlook. It needs to be changed on the Exchange server using the Set-CalendarProcessing cmdlet to change the DeleteSubject and AddOrganizertoSubject settings for the resource room.
> In Exchange 2010 and newer, use the Set-CalendarProcessing cmdlet. The format is the same as for Exchange 2007, using $true if you want to have the organizer name in the subject and $false to remove the organizer:
> Set-CalendarProcessing -identity meetingroom -DeleteComments $true -AddOrganizerToSubject $false -DeleteAttachments $true -DeleteSubject $true
> In Exchange 2007, use the set-mailboxcalendarsettings cmdlet to change the DeleteSubject and AddOrganizertoSubject settings for the resource room.
> Use the following PowerShell command to make the change, changing 'meetingroom' to the correct alias for your meeting room.
> set-mailboxcalendarsettings -identity meetingroom -deletesubject $false -addorganizertosubject $false
Source : https://www.slipstick.com/exchange/cmdlets/meeting-organizers-name-appears-in-subject-line/
