Forum Discussion
Thomps_0
Apr 08, 2020Brass Contributor
How to manage a bookings site after the owner leaves the organization
I have done a bit of digging and cannot seem to find this anywhere, so I thought I would try here. I am looking to find out if there is a way to easily manage Bookings sites after a sole owner leave...
Thomps_0
Jul 31, 2020Brass Contributor
Kreera_House I struggled with initially to find the bookings mailbox name. To find it, go to the Bookings Page and under "Share your page" you can see the email account name created for your site in the share URL. The issue I had is these accounts don't show up in ECP, and initially I didn't realize they were a specific RecipientTypeDetails value.
With that, you can also use this to get all your Bookings mailboxes:
Get-Mailbox -ResultSize Unlimited | Where {$_.RecipientTypeDetails -eq 'SchedulingMailbox'}
John_G
Jul 28, 2021Copper Contributor
Just a heads up, RecipientTypeDetails is filterable,
Get-Mailbox -ResultSize Unlimited -Filter{RecipientTypeDetails -eq 'SchedulingMailbox'}
Will run faster than a where-object... 🙂
Get-Mailbox -ResultSize Unlimited -Filter{RecipientTypeDetails -eq 'SchedulingMailbox'}
Will run faster than a where-object... 🙂