Forum Discussion
Migrate email to a O365 Teams emails
Thanks VasilMichev ... some of our members jumped on Teams right away and so many of our "shared email mailbox" names are part of the O365 group email that's attached to the team.
And we can't change that so if sales@domain.com is already used as the username an O365 Group for the Sales Team, how do we get sales@domain.com for the shared mailbox if we can't change the O365 name?
You can change anything via PowerShell. For the Group, use the Set-UnifiedGroup cmdlet.
- mokieeMar 30, 2020Copper Contributor
VasilMichev Thanks for this!
I did change the address of my Teams's O365 group email, myteam@domain.com to teams.myteam@domaincom but then when I tried to create a shared mailbox with myteam@domain.com, it says that "The proxy address SMTP:myteam@domain.com is already being used by the proxy addresses or LegacyExchangeDN of ..... Please choose another proxy address."
EDIT: figured out that when I changed the PrimarySmtpAddress with the new email, it automatically created an alias with the old one. Trying to figure out how to remove the alias.
- VasilMichevMar 30, 2020MVP
Something like this should do it:
Set-UnifiedGroup groupname -EmailAddresses @{remove="address@domain.com"}
- mokieeApr 01, 2020Copper Contributor
VasilMichev Thank you!