To delete the unwanted booking pages in Microsoft Bookings, you can follow these steps:
Delete a Shared Booking Page in the Microsoft 365 Admin Center:
- Go to the Microsoft 365 admin center.
- In the Admin center, select Users.
- On the Active Users page, choose the name of the shared booking page that you want to delete and then select Delete user.
Delete a Shared Booking Page Using Exchange Online PowerShell:
- Connect to Exchange Online PowerShell.
- Run the following command to get a list of the booking mailboxes in your tenant:
Get-EXOMailbox -RecipientTypeDetails SchedulingMailbox - Replace
<BookingCalendarToDelete>with the exact name of the booking mailbox alias that you want to permanently delete, and then run the following command:Remove-Mailbox -Identity <BookingCalendarToDelete> - To verify that the shared booking page has been deleted, run:
The deleted shared booking page will not appear in the output.Get-EXOMailbox -RecipientTypeDetails SchedulingMailbox
Please note that only Microsoft 365 Admins can delete shared booking pages created by end users, so ensure you have the necessary permissions to perform these actions.