Um usuario não esta atualizando o campo Mobile do AD On Premisses no Entra ID

Ricardo Rapouso 0 Pontos de reputação
2026-08-10T21:12:02.7433333+00:00

Temos um usuario qeu não altera o campo mobile. Já fizemos testes de alterar outros campos e ocorre sem problemas.

tambem fizemos um teste de alterar o Mobile de outro usuario e altera normalmente.

A alteração é feita no AD On premisses não reflete no Entra ID

Já foi verificado na ferramenta miisclient tanto em Operators Metaverse, e na ferramenta mostra que o novo mobile é enviado, mas não reflete no usuario.

Armazenamento do Azure
Armazenamento do Azure

Recursos globalmente exclusivos que fornecem acesso a serviços de gerenciamento de dados e atuam como namespace pai para eles.

0 comentários Sem comentários

1 resposta

Classificar por: Mais útil
  1. Akshay Kaushik 18,041 Pontos de reputação Funcionário da Microsoft Moderador
    2026-08-12T12:55:11.27+00:00

    Hi @Ricardo Rapouso ,

    Thanks for posting your query on Q&A, from the description above I could understand that you have updated phone number in MobilePhone attribute, but it is not getting updated in the Entra ID. Please confirm if this is not the case.

    Cause:

    This could be due to: “DirSyncOverrides” feature.*If the mobile number was previously edited in Entra ID or Office 365 (e.g., via Set-MsolUser or the Office 365 portal), the DirSyncOverrides flag may have been set, causing Entra ID to prioritize the cloud value over the on-premises AD value. This is a common issue when cloud tools like the MSOnline PowerShell module are used to modify synced attributes.

    *Solution:

    To over come this we need to try Enable the BypassDirSyncOverridesEnabled feature:

    • Install-Module Microsoft.Graph
    • Connect-MgGraph -Scopes OnPremDirectorySynchronization.ReadWrite.All
    • $directorySynchronization = Get-MgDirectoryOnPremiseSynchronization
    • $directorySynchronization.Features.BypassDirSyncOverridesEnabled = $true
    • Update-MgDirectoryOnPremiseSynchronization -OnPremisesDirectorySynchronizationId $directorySynchronization.Id -Features $directorySynchronization.Features
    • Verify the status of the BypassDirSyncOverridesEnabled feature: (Get-MgDirectoryOnPremiseSynchronization).Features.BypassDirSyncOverridesEnabled 
    • Once the feature is enabled, start a full synchronization cycle in Microsoft Entra Connect using the following command:  Start-ADSyncSyncCycle -PolicyType Initial

    Let us know if you have any further questions.

    Please "Accept the answer" if the information helped you. This will help us and others in the community as well.

    Thanks,

    Akshay Kaushik

    Esta resposta foi útil?


Sua resposta

As respostas podem ser marcadas como ‘Aceitas’ pelo autor da pergunta e ‘Recomendadas’ pelos moderadores, o que ajuda os usuários a saber a resposta que resolveu o problema do autor.