Forum Discussion
Problem with Bookings - calendars are gone from my profile, yet they're still active online
5 Replies
- Spencer LunsfordCopper Contributor
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.
- Michael HessCopper 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? - andrewrowattCopper ContributorI have the same issue. I am fairly new to Bookings and just have two setup but now cannot go back to configure the first. Like you, the inaccessible calendar is still active.
- andrewrowattCopper ContributorIn 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 HessCopper 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 }