Hello,
Pretty excited about the new 1.8.10 calendar module.
I’ve got it running with a shared .ics room calendar from Office 365.
one issue I can’t figure out - In the Template settings, the Name (room name), Summary (Organizer’s name), Location (room name again), StartDate and EndDate all work fine. What I can’t get to display is the Description.
Perhaps it is the way Exchange calendars work?
Anyone else trying this yet with an exchange room calendar?
Yes it is very simple, add the .ics publish link and set the values like 1 days and [summery] etc.
Did not figure out all the features like showing only 1 hour in advance, but it works great.
I actually just got this working today - from an exchange online Room calendar.
I’ll just go start to finish with what I know works and you can adopt it to your needs.
Create a new Room: New-Mailbox -Name "TestRoom" -Room
Set room calendar to show the organizer and subject of the meeting: Set-CalendarProcessing "TestRoom" -AddOrganizerToSubject $True -DeleteComments $False -DeleteSubject $False
Create a new sharing policy for external calendar sharing with details: New-SharingPolicy -Name "TestRoom" -Domains: 'Anonymous: CalendarSharingFreeBusyReviewer'
Assign Sharing Policy to Calendar: Set-Mailbox -Identity TestRoom -SharingPolicy "TestRoom"
Publish the calendar: Set-MailboxCalendarFolder "TestRoom:\Calendar" -PublishEnabled $true
Change Detail Level to Full Details: Set-MailboxCalendarFolder -Identity TestRoom:\Calendar -DetailLevel FullDetails
I checked the box for “Set an alternative template for events that are current?”
For Current Meeting Template, I have the following:
Current Meeting:
[Summary]
[Description]
Ends @ [EndDate]
If no meeting are scheduled, I put the following in the Advanced tab:
All scheduled events will be updated shortly...
QR code to a game lol.
Here is how the meetings show up currently.
Let me know if you have any more questions about how I set this up - I think I got just about everything covered in here!
I was able to get this working thanks to the following resources:
Hello,
I’m pretty sure this is going to be permissions related. maybe re-run these commands against that room calendar? (changing the calendar name and sharing policy names of course).
Set room calendar to show the organizer and subject of the meeting: Set-CalendarProcessing "TestRoom" -AddOrganizerToSubject $True -DeleteComments $False -DeleteSubject $False
Create a new sharing policy for external calendar sharing with details: New-SharingPolicy -Name "TestRoom" -Domains: 'Anonymous: CalendarSharingFreeBusyReviewer'
Assign Sharing Policy to Calendar: Set-Mailbox -Identity TestRoom -SharingPolicy "TestRoom"