A cloud-based identity and access management service for securing user authentication and resource access
Hi @rddx58 • Thank you for reaching out.
Adding bluecorp.com as custom domain will not automatically update the UPN from ******@bluecorp.onmicrosoft.com to ******@bluecorp.com. You will still be able to sign into O365 Admin center by using ******@bluecorp.onmicrosoft.com.
To update the UPN to ******@bluecorp.com after adding the custom domain, you will need to run below cmdlet:
Set-MsolUserPrincipalName -UserPrincipalName " ******@bluecorp.onmicrosoft.com" -NewUserPrincipalName "******@bluecorp.com"
To add ******@bluecorp.com as secondary email address, you can use below cmdlet:
Set-Mailbox -Identity "bob" -EmailAddresses @{add="******@bluecorp.com"}
-----------------------------------------------------------------------------------------------------------
Please "Accept the answer" if the information helped you. This will help us and others in the community as well.