Shared mailbox error: The email address is already being used

Mikael O 21 Reputation points
2021-03-22T08:35:20.243+00:00

HI!

I like to find out why im not able to create some shared mailbox. I have sevral "domains" in the same Tenat, and when I want to create a shared-mailbox for one of the domains I get this:
Error:
The email address is already being used. Please choose another email address.

When i search in the GUI for the mailbox I cannot find it!
When I did a export; Get-mailbox and Get-Recipient to Excel the mail address I want to create isent in that list.

Where do i start troubleshooting??

Exchange Server Management
Exchange Server Management
Exchange Server: A family of Microsoft client/server messaging and collaboration software.Management: The act or process of organizing, handling, directing or controlling something.
7,669 questions
0 comments No comments
{count} votes

Accepted answer
  1. Vasil Michev 108.1K Reputation points MVP
    2021-03-22T08:58:44.09+00:00

    The fastest/easiest way to find whether the address is in use is via the Get-Recipient cmdlet:

    Get-Recipient user@domain.com
    

    Other than that, the UI has the "helpful" feature of checking for duplicate alias (mailNickname) values, so you might want to try creating the shared mailbox via PowerShell instead:

    New-Mailbox -Name shared -PrimarySmtpAddress shared@domain.com -Shared
    
    1 person found this answer helpful.

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.