Jan 30 2018 03:48 PM
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 ie:
admin@domain1.com
admin@domain2.com
admin@domain3.com
The user who monitors these mailboxes needs to be able to send uniquely from all of those domains. Is this possible?
Jan 31 2018 10:38 AM
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.
Jan 31 2018 10:41 AM
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.
Jan 31 2018 10:50 AM
It's simple:
New-Mailbox -Name Shared1 -Shared -PrimarySmtpAddress shared@domain1.com
If needed, also use the -Alias parameter.
Jun 26 2021 09:25 PM