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...
Michael Hess
Sep 04, 2020Copper Contributor
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?