You need the Exchange Roles to modify 365 group email address:
Role RoleAssigneeType RoleAssigneeName
Mail Recipients RoleGroup Recipient Management
Mail Recipients RoleGroup Organization Management
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hello. I'm able to create Microsoft 365 groups, but when I try to modify the email address of an already created Microsoft 365 group, I'm not able to perform that action.
My user has the "User Administrator" Azure built-in role assigned. With this role, I can edit the name or the description of the group, but not the email address. I don't see the 'edit' button.
Do you know which Azure built-in or custom role is needed to perform this action?
Thanks in advance,
Álvaro
You need the Exchange Roles to modify 365 group email address:
Role RoleAssigneeType RoleAssigneeName
Mail Recipients RoleGroup Recipient Management
Mail Recipients RoleGroup Organization Management
Yes It is possible, you can add new email ID and you can promote your new Email ID as an SMTP and you can remove your Old Email ID. But performing this steps, you need a global Administrator access.
Please follow below Steps to change Office 365 group Email address:-
Current SMTP address :- ******@abcd.onmicrosoft.com
Required SMTP address :- ******@abcd.com
Follow the below steps in power shell using Global Administrator Credentials,
Set-ExecutionPolicy Unrestricted
Start-service winrm
Import-module MSOnline
$UserCredential = Get-Credential
$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $UserCredential -Authentication Basic -AllowRedirection
Import-PSSession $Session
Connect-MsolService -Credential $UserCredential
Please note, for updating the Office 365 group SMTP address required Global Administrator access. Hope this will help you and let me know if you are facing any issue on this.
Let me know if you still have any question post trying the above steps.
Please "Accept the answer" if the information helped you. This will help us and others in the community as well.