Forum Discussion
How to manage a bookings site after the owner leaves the organization
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'}
Thomps_0 Right. With that you'll get a list of all of your Bookings sites in your tenant.
If you're looking for just an individual mailbox to find out whether it's forwarded to anyone or what its mailbox address is so that you can construct the URL of the published site, you can also use Get-Mailbox or Get-Recipient with the Business Name in quotations marks and pull the PrimarySmtpAddress or ForwardingSmtpAddress.
If you want to find out if there are other admins of the site, use Get-MailboxPermission.
It would be great if Bookings had its own set of PowerShell cmdlets to manage and retrieve information about Bookings sites, but some of the information is retrievable with standard Exchange PowerShell cmdlets.