Forum Discussion
saikelu
May 26, 2020Copper Contributor
SchedulingMailbox Could anyone please provide some information about this mailbox type ?
Recently I've found a mailbox type SchedulingMailbox in our tenant.Did a google search but was not able to find relevant information.
Could anyone please provide some insight on this mailbox type? a URL would be really helpful.
Thanks,
Sai
Scheduling mailboxes are what Bookings use, here's an article that gives you more details: https://support.office.com/en-us/article/delete-a-booking-calendar-8c3a913c-2247-4519-894d-b6263eeb9920
- christianpaivaCopper Contributor
VasilMichev
I noticed that when I create a company booking page using letters with accent, the resulting Scheduling MailBox´s Attributes as UserPrincipalName, Alias and Primary SmtpAddress was created without the accented letter.
Note that DisplayName is different than the others attributes.
UserPrincipalName: FarmciaRoval@farmaciaroval.com.br
Alias: FarmciaRoval
DisplayName: Farmácia Roval
EmailAddresses: {SMTP:FarmciaRoval@farmaciaroval.com.br
PrimarySmtpAddress: FarmciaRoval@farmaciaroval.com.br
Question: Is there any problem on changing those attributes from PowerShell in order to correct them?
- manuphilipBrass Contributor
Hello saikelu ,
Scheduling mailboxes are basically your resource mailboxes (for eg. meeting room).
You may use PowerShell to list the Scheduling mailboxes in your tenant
Following are the commands to help you to find the details from PowerShell
Type the commands one by one
$user = get-credential $s = New-Pssession -ConnectionUri https://outlook.office365.com/powershell-liveid -Credential $user -Authentication basic -AllowRedirection -ConfigurationName Microsoft.Exchange Import-PSSession $s get-mailbox -RecipientTypeDetails Scheduling
Please mark as **"Accept the answer"** if the above steps helps you. Others with similar issues can also follow the solution as per your suggestionRegards,Manu