Summary: This PowerShell one-liner will show the people picker settings for each Web Application, including Central Administration.
If you want to know the settings for the people picker in your SharePoint farm, you can run the following line of PowerShell.
It will retrieve all Web Applications and show the people picker settings for each one.
Get-SPWebApplication -IncludeCentralAdministration | %{Write-Host $_.url; $_.peoplepickersettings | select * | fl }
Running the one-liner will result in something like this:
by Nico Martens via Everyone's Blog Posts - SharePoint Community
No comments:
Post a Comment