sharepoint people picker is not working in central admin sharepoint

We have to check peoiple picker is activated or not for the CA and web application.
First check AD features are are installed or not.
or
Then using stsadm this coomand execute.

STSADM.exe -o getsiteuseraccountdirectorypath -url http://intranet

If you get output like this:
DC=childdomain,DC=rootdomain,DC=local

 Then you need to run the following command to change the people picker search scope to search the entire forest:

STSADM.exe -o setsiteuseraccountdirectorypath -path "" -url http://intranet

or 
stsadm –o setproperty –pn "peoplepicker-searchadforests" –pv "Domain" -url http://sharepointlive:8080/


OR

Using this powershell script
$webapp = get-spwebapplication http://myurl.com
$webapp.peoplepickersettings
#this showed that there was something set in a sub property of peoplepickersettings called ActiveDirectoryCustomFilter.
 
#next step to fix this was to reset that property, the code below was used:
$webapp = get-spwebapplication http://myurl.com
$webapp.peoplepickersettings.ActiveDirectoryCustomFilter = $null
$webapp.update()

Comments

Good day I am so thrilled I found your weblog, I really found you by mistake, while I was researching on Bing for something else, Anyhow I am here now and would just like to say kudos for a marvelous post and a all round enjoyable blog (I also love the theme/design), I don't have time to read it all at the moment but I have saved it and also included your RSS feeds, so when I have time I will be back to read much more, Please do keep up the fantastic job.

Popular posts from this blog

what is Event Cache table in sharepoint

CAML Query syntax and options in SharePoint

Change anchor link url in sharepoint calender