Forum Discussion
Hasan Siddiqui
Nov 30, 2017Copper Contributor
Change O365 group email address using powershell
I am trying to change primarty SMTP of Office365 group but getting error:
We failed to update the unified group. Please try again later. + CategoryInfo : NotSpecified: (:) [Set-UnifiedGroup],...
Daniel Simpson
Jun 06, 2018Copper Contributor
Using Set-Group seems to do the trick:
Set-Group "GroupName" -WindowsEmailAddress "NewPrimaryEmail@domain.com"
Panagiotis Kagias
Jun 08, 2018Copper Contributor
Using Set-Group seems to do the trick:
Set-Group "GroupName" -WindowsEmailAddress "NewPrimaryEmail@domain.com"
This one worked for me. Many thanks !