SchedulingMailbox Could anyone please provide some information about this mailbox type ?

Copper Contributor

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

3 Replies

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 suggestion
Regards,
Manu

@Vasil Michev
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?