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'}
- SreerejiFeb 16, 2022
Microsoft
Thomps_0 - Looks like your query is already answered. Summarizing the steps.
1) get-mailbox -RecipientTypeDetails scheduling
to retrieve the list of Bookings Mailboxes
2) Add-MailboxPermission -Identity <BookingsMailbox> -User <BookingsSiteAdminUser> -AccessRights FullAccess -InheritanceType All
to add admin and provide Full access permission- MichaelOlivJan 27, 2023Iron ContributorHello,
This post is old but we find it easily. And it is usefull.
I uses your powershell to see all Bookings and try to add me on some.
After adding my account I have access to it. But I can only view. I can't do anything on it. I can't add staff or modify/create service.
Do you know how to do it please?