Aug 29 2020 09:03 AM - edited Aug 29 2020 02:20 PM
Sep 03 2020 12:16 PM
Sep 04 2020 01:03 AM - edited Sep 04 2020 01:06 AM
Same finding here: As an administrator I recently setup multiple bookings but cannot show/switch between them anymore.
Don't know if this is related, but since we don't wanted booking email addresses in our Global Address Book (GAL) , I did hide them by PowerShell
$mbox = Get-Mailbox -RecipientTypeDetails Scheduling | Where-Object -Property HiddenFromAddressListsEnabled -EQ $False
foreach ($box in $mbox) {
Set-Mailbox -Identity $box.Id -HiddenFromAddressListsEnabled $True
}
Don't know if this is related? However even after I unhide them, issue remains.
@loganmacd @andrewrowatt Were you working with hiding from GAL, too?
Sep 13 2020 02:49 AM
Sep 14 2020 01:04 AM
@andrewrowatt Thanks a lot for your response, since this confirmed my worries: Hiding (some) booking calendars from Global Address Book crashes the functionality. So I could fix it also on my end, by undoing the Hide with
$mbox = Get-Mailbox -RecipientTypeDetails Scheduling
foreach ($box in $mbox) {
Set-Mailbox -Identity $box.Id -HiddenFromAddressListsEnabled $False
}
Oct 26 2021 08:24 AM
@loganmacd I was creating a How-to for a conference and went through the motions of creating a new calendar. Now my original calendar is not showing in the carrot, nor can I find it as you stated. I'm reaching out to MSFT to see what else can be done.