Forum Discussion
Brad West
Dec 12, 2016Brass Contributor
Shared Calendar Appointment Detail Not Displaying In Outlook 2016
We are having an issue where group members can only see "Free/Busy" for event details in our shared Group Calendar in Outlook 2016. They are able to see full event details when accessing the Group C...
Greg Zygadlo
Jun 30, 2017Brass Contributor
I know when I had created room calendars I had to use some powershell so that calendar details would show up. Here is the script I was using
$name = Read-Host 'What is the conference room name?'
$email = Read-Host 'What is the Email Address ?'
$rl = read-host 'What is name of room list'
Set-MailboxFolderPermission -Identity ${name}:\calendar -User default -AccessRights LimitedDetails
Set-CalendarProcessing -Identity $name -AddOrganizerToSubject $true -DeleteComments $false -DeleteSubject $false
add-MailboxFolderPermission -Identity ${name}:\calendar -User "username/groupname" -AccessRights owner
Add-DistributionGroupMember -Identity $rl -Member $email
Hope this helps.