Forum Discussion
Deleted
Mar 02, 2017Is there a way to change O365 group email address using powershell
My organization wants to change email address of O365 group. I am not able to find any power shell to change email address of already created O365 group. I tried below command but it is not workin...
- Oct 12, 2017If you want to update the Email Address of the Office 365 group, please follow below steps.
O365 Group Name :- Test O365Group
Current Email addres :- test.o365@abcd.onmicrosoft.com
Update to :- test.o365@abcd.com
Follow below script in powershell.
Set-UnifiedGroup -Identity "Test O365Group" -EmailAddresses: @{add="SMTP:test.o365@abcd.com"}
Deleted
I am not using that extra charecter. It was a mistake in my typo.
VasilMichev
Mar 06, 2017MVP
So do you get any error when running the cmdlet or?