People picker is not finding users from AD in SP 2010
People picker is not finding newly added user from AD. But it show on click of check name.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
laughing timePosted Mar 7, 2016, 12:37 PM
Get-SPSite "http://SharePoint/sites/collection" | fl > C:\props.txt
If you open the Props.txt file, you will see the properties for this site collection. Look for "UserAccountDirectoryPath" property. By Default it should be blank, if it is not, that is causing new Users in AD not to be resolved in People Picker.
To Change the Property value to Blank, follow as below.
$Site = Get-SPSite "http://SharePoint/sites/collection"
$Val=""
$Site.UserAccountDirectoryPath = $val
Asha SharmaPosted Feb 9, 2016, 1:24 AM
Nanddeep NachanPosted Feb 8, 2016, 4:07 AM