Forum Discussion
Tyler Martin
Jan 30, 2018Copper Contributor
Shared Mailbox multiple domains
I've got 3 unique domains that each currently have their own admin@ account. I want to manage all three domains on one tenant, but I cant seem to have multiple shared mailboxes with the same prefix i...
VasilMichev
Jan 31, 2018MVP
You can, simply don't use the Admin center to create them - it tries to enforce uniqueness of the "alias" and forgets to check the different domain name. Use PowerShell to create them, or simply create them with different alias and change it later.
- Tyler MartinJan 31, 2018Copper Contributor
What would the commands be to set them up in Powershell?
I tried to set them up uniquely in Exchange Admin, and then change them after but it failed, it still wasn't looking at the domain.- VasilMichevJan 31, 2018MVP
It's simple:
New-Mailbox -Name Shared1 -Shared -PrimarySmtpAddress shared@domain1.com
If needed, also use the -Alias parameter.