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
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:
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