Forum Discussion
loganmacd
Aug 29, 2020Copper Contributor
Problem with Bookings - calendars are gone from my profile, yet they're still active online
I am a teacher - I created multiple booking calendars for classes I teach, for the purpose of setting up meetings with students. When I last logged into Bookings, I tried to "Open" one of my calenda...
andrewrowatt
Sep 13, 2020Copper Contributor
In my case, the issue was caused by our internal IT department "hiding" the Bookings entries in the Global address book. They have undone that action and now the Bookings are accessible. Sorry that I don't know the specific details.
Michael Hess
Sep 14, 2020Copper Contributor
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
}