Issue:
The AD Manager Property Value are not synced with
SharePoint 2010 though SP UPS Service configured properly and got the below
Event log messages
Event Id 6801 - FIMSynchronizationService
“More than one DN Specified for the Same Profile”
Event ID 6801- FIM
Synchronization Service “ Exception while trying to Migrate user test\ramu
to thetest\ramu, The user does not exist or not unique”
Cause:
The NETBIOS (test\ramu) is different from Domain Name
(thetest\ramu) which caused the issue.
Resolution:
The default configuration of the User Profile Service
Application does not include the NetBIOS namespace.
The User Profile Service application setting has been changed
by ran the below commands
$UPA = Get-SPServiceApplication –id “User Profile Service Application ID”
$UPA.NetBIOSDomainNamesEnabled=1
$UPA.Update()