Forum Discussion
dthompson770
Aug 13, 2024Copper Contributor
Can't see the title of the events in a shared calendar
Hello everyone, I hope all is well. I have an annoying issue right now. I have a shared Outlook calendar where I cannot see the title of any events from myself or another person. In my personal c...
VasilMichev
Aug 14, 2024MVP
That would depend on the configuration of the shared calendar. Ask the person who shared it to verify the settings - in order for you to be able to see the full info, the sharing level needs to be set to LimitedDetails (free/busy with location and subject).
In addition, you might need to alter the calendar processing settings on the mailbox, which can be controlled via the Set-CalendarProcessing cmdlet.
In addition, you might need to alter the calendar processing settings on the mailbox, which can be controlled via the Set-CalendarProcessing cmdlet.
wridgeway
Sep 12, 2024Copper Contributor
Vasi is correct.
You'll need to run the following:
Get-CalendarProcessing -Identity "CALENDARNAME" | Format-List
Then look for "DeleteSubject" which is likely set to "True", then run the following:
Set-CalendarProcessing -Identity "CALENDARNAME" -DeleteSubject $false
https://learn.microsoft.com/en-us/powershell/module/exchange/set-calendarprocessing?view=exchange-ps#-deletesubject