one connector is showing for the user in AD Connect server

j prasad 31 Reputation points
2023-09-20T00:03:52.3433333+00:00

one connector(On-prem) is showing for the user in AD Connect server.

On-prem changes is not reflecting in azure AD connect after full sync for the user .

In Attribute filtering it is showing like mailnickname is not null error .

But we applied mailnickname in on-prem,still we are getting same error

one connector in ad connect.jpg

Microsoft Entra ID
Microsoft Entra ID
A Microsoft Entra identity service that provides identity management and access control capabilities. Replaces Azure Active Directory.
21,376 questions
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Marilee Turscak-MSFT 36,821 Reputation points Microsoft Employee
    2023-09-20T18:52:50.56+00:00

    Hi @j prasad ,

    It sounds like there could still be an attribute mismatch causing Azure AD Connect to not reflect the changes. Have you made sure to update the Alias attribute as well using Set-Mailbox or Set-RemoteMailbox using the steps described here?

    • Set-RemoteMailbox

    PowerShellAI ConvertCopy

    $alias=Get-remotemailbox <user@domain.com>
    Set-RemoteMailbox <user@domain.com> -alias "$($alias.alias)1"
    
    • Set-Mailbox

    PowerShellAI ConvertCopy

    $alias=Get-mailbox <user@domain.com>
    Set-Mailbox <user@domain.com> -alias "$($alias.alias)1"**
    

    Also, confirm that the attribute is updated in your Domain Controller under Active Directory Users and Computers > find the user that owns the mailbox > right click on them > select Properties > select the Attribute Editor Tab > find the mailNickname attribute.

    See also: mailNickName not updating

    If this does not work, please share a screenshot of the error you are receiving and confirm what your setup entails.


  2. j prasad 31 Reputation points
    2023-09-26T20:24:11.9933333+00:00

    Hi Marilee,

    we don't have Azure Active directory connector for the user in ad connect server.

    How we can run the above comments.

    we have applied the mailnickname in on-prem directory but that changes is not refelcting in azure ad connect after full sync cycle

    I have attached the attribute filtering error

    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.