Problem:
After installing user profile and sync with
active directory, all the users prefix is changed to "corp/".
For any profile which you click on "Edit My Profile", even without making any changes, the prefix will change to "NTDOMAIN\".
Reason:
HBF adctive directory domain name and
DNS name is different:
Solution:
- First, delete the AD connections from the user profile manage page.
- then, run this powershell command
Get-SPServiceApplication
$upsa = Get-SPServiceApplication -Id <GUID of User Profile Service Application>Replace <GUID of User Profile Service Application> with the service guid above.
$upsa.NetBIOSDomainNamesEnabled = 1
$upsa.Update()
- Restart IIS and OWSTimer
- Recreate the AD connection
- Run full import twice
- Run incremental sync
Use case: Automatically importing user profile pictures to SharePoint 2013 (and 2010) |
SP2010 User Profile Service Application Setup and NetBIOSDomainNamesEnabled Issues
http://www.freakingsharepoint.com/2012/12/sp2010-user-profile-service-application.html
No comments:
Post a Comment