Descrição no endereço de e-mail

Evandro Ropelato 0 Reputation points
2025-05-07T20:45:26.3966667+00:00

Estou tendo um problema onde o endereço do e-mail de alguns colaboradores está aparecendo a descrição @dominiocombr.onmicrosoft.com ao final.

O correto seria @dominio.com.br

Preciso de uma solução para que apenas o dominio apareça na descrição do endereço.

Outlook | Windows | Classic Outlook for Windows | For business
{count} votes

1 answer

Sort by: Most helpful
  1. Anonymous
    2025-05-08T06:21:33.2666667+00:00

    Hi Evandro Ropelato,

    Welcome to our forum!

    Here are some steps you may take:

    1. Add and Verify Your Custom Domain
    • Go to the Microsoft 365 Admin Center > Navigate to Settings > Domains > Add dominio.com.br as a custom domain > Verify ownership by adding the TXT or MX record to your DNS
    1. Set the Correct UPN Suffix (In Azure AD)
    • Go to Azure Active Directory > Users > Select each affected user > Click "Edit" next to User Principal Name > Change from @dominiocombr.onmicrosoft.com to @dominio.com.br
    1. PowerShell Solution (for bulk changes)

    Connect-AzureAD

    $users = Get-AzureADUser | Where-Object {$.UserPrincipalName -like "*dominiocombr.onmicrosoft.com"}_

    foreach ($user in $users) {

        $newUPN = $user.UserPrincipalName.Replace("dominiocombr.onmicrosoft.com","dominio.com.br")

        Set-AzureADUser -ObjectId $user.ObjectId -UserPrincipalName $newUPN

    }

    1. Set Primary Domain
    • In Microsoft 365 Admin Center > Go to Settings > Domains > Set dominio.com.br as the primary domain

    Hope it helps.


    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".  

    Note: Please follow the steps in our [documentation] to enable e-mail notifications if you want to receive the related email notification for this thread. 

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.