Mailbox Location.

Microsoft Q & A 381 Reputation points
2022-07-07T21:26:21.28+00:00

How to get the Mailbox Count across the regions in office 365 tenant with PowerShell or GUI.

It should be like.
Row Labels Count of User Location
Albania 9
Algeria 143
Angola 15
Argentina 578
Armenia 7
Australia 1384

and so on.

Microsoft Exchange Online Management
Microsoft Exchange Online Management
Microsoft Exchange Online: A Microsoft email and calendaring hosted service.Management: The act or process of organizing, handling, directing or controlling something.
4,386 questions
{count} votes

3 answers

Sort by: Most helpful
  1. KyleXu-MSFT 26,246 Reputation points
    2022-07-08T05:26:59.41+00:00

    @Microsoft Q & A

    Which attribute that you want to check?

    If you want to check the Language in “Get-MailboxRegionalConfiguration” command, you could use command below to check it:

    Get-Mailbox -ResultSize unlimited | where {$_.RecipientTypeDetails -eq "UserMailbox"} | Get-MailboxRegionalConfiguration | Group-Object Language | select Count,Name  
    

    218842-1.png

    If you want to check the "MailboxRegion" in "Get-Mailbox" command, you could use commend below to check it:

    Get-Mailbox -ResultSize unlimited | where {$_.RecipientTypeDetails -eq "UserMailbox"} | Group-Object MailboxRegion | select Count,Name  
    

    If you want to check other attribute, you could use the "Group-Object" to count them.


    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.



  2. Amit Singh 4,956 Reputation points
    2022-07-08T06:05:16.103+00:00

    Steps to find the location of an Office 365 tenant -

    • Log in to your Microsoft 365 admin center. In the left menu, click Settings > choose Org settings > Go to the Organization profile tab and select Data location from the list.

    To find the location of an Office 365 tenant via PowerShell -

    • Connect to Exchange Online by using Windows PowerShell > Run the Get-OrganizationalUnit cmdlet in PowerShell to display a list of your tenant’s properties. You can guess the region where your tenant is located by looking at the value of the OrganizationId property.
      Your Office 365 data can be spread out across multiple datacenters in a given region. To find out the exact location of a mailbox: Connect to Exchange Online via Windows PowerShell. Execute the Get-Mailbox cmdlet in PowerShell to display a list of your Office 365 mailboxes.

    For RAW label count, you can check this MS article - https://learn.microsoft.com/en-us/microsoft-365/enterprise/administering-exchange-online-multi-geo?view=o365-worldwide.


  3. GIACCHINO CARDELLA 1 Reputation point
    2022-07-12T05:49:48.327+00:00

    Le compte d'utilisateur sélectionné n'existe pas dans le client « Microsoft Services » et ne peut pas accéder à l'application « 497effe9-df71-4043-a8bb-14cf78c4b63b » dans ce client. Le compte doit d'abord être ajouté en tant qu'utilisateur externe dans le client. Utilisez un autre compte.

    0 comments No comments