peoplepicker

Peoplepicker not showing diabled users

If you don’t want that disabled accounts will be show in the people picker of MOSS 2007, than run the following stsadm command to add a filter to the peoplepicker query: stsadm -o setproperty -propertyname peoplepicker-searchadcustomfilter -propertyvalue (!userAccountControl=514) -url http://site_collection_url   To check if the query has changed, run the following stsadm command: stsadm -o getproperty … Continued

Tuning MOSS 2007 Peoplepicker if responstime is Unacceptable.

I used the following two stsadm commands to improve the performance of the MOSS 2007 peoplepicker: Specify the domains to query: stsadm -o setsiteuseraccountdirectorypath -path “OU=DOMAIN,DC=internet,DC=ext,DC=com” -url http://mywebapplication/ To query only on the AD fields: userPrincipalName, sAMAccountName and displayname: stsadm.exe -o setproperty -pn peoplepicker-searchadcustomquery -pv (userPrincipalName={0})(sAMAccountName={0})(sn={0})(displayName={0}) -url http://mywebapplication/