The people-picker is a SharePoint interface responsible for querying repositories for identities or groups in order to grant them permission in the SharePoint application. Site administrators and other users use the People Picker Web control to select people and groups when assigning permissions. There are two possible ways to add users, via the checkname or via the browse feature.
The checkname is the icon with a messenger guy and a checkmark :
The browse feature is the book icon:
How to configure SP2010 to resolve accountnames from other domain(s)
If there’s a full 2-way Trust between the domains account name resolving should be ok by default.
If there’s a one-way trust (or a two-way trust with selective authentication; you need to configure additional stuff
First, we set an encryption key (execute this on each server in the farm):
stsadm -o setapppassword -password ******
Second, we register all the domains that need to be searched for account names (this is done per Web Application, not per server)
stsadm -o setproperty -pn peoplepicker-searchadforests -pv “domain:domainB.local;domain:domainA.local,domainA\account,password” -url http://webapplication
The account which is used from the domain doesn’t matter as long as it exists
To check which value has been set for the PeoplePicker-searchadforests
stsadm -o getproperty -pn peoplepicker-searchadforests -url http://webapplication
Output moet dan zijn:
<Property Exist="Yes" Value="domain:msfthosting.local;domain:intra.e-office.com,
e-office\!saTrust,*****" />PS C:\Users\admjgr>
If you want to remove the value which is defined for the peoplepicker-searchadforests
Stsadm –o setproperty –pn peoplepicker-searchadforests –pv “” -url “name of the URL”
Example: stsadm –o setproperty –pn peoplepicker-searchadforests –pv “” -url https://webapplication
No comments:
Post a Comment