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...
manuphilip
May 26, 2020MCT
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