vote up 1 vote down star

Is there any way with the built-in SharePoint web services which can give us the information about the Active Directory users present in a SharePoint Group?

flag

71% accept rate

1 Answer

vote up 0 vote down check

Yes. Use UserGroup.GetUserCollectionFromGroup.

Returns information about the collection of users in the specified group.

link|flag
Glad this didn't have to be yet another "you can't do this with the web services" answer. – Alex Angas Sep 18 at 13:45
Thanks for the reply. This gives us the information about the users present in the specified group. But how can we differentiate the Windows user and AD user in the returned information? – Nagendra Sep 21 at 8:58
@Nagendra: Sorry I don't understand your question. What is the difference between a Windows user and AD user in your environment? – Alex Angas Sep 21 at 9:04
On my SharePoint Server, I have added an AD user(user1) and a windows local administrator (administrator) into a SharePoint group. When I use GetUserCollectionFromGroup command, I get to see both User1 and administrator. Now how can I differentiate which one is AD user account and which one is not. – Nagendra Sep 21 at 9:26
@Nagendra: The only way is from the LoginName attribute. Domain users should be prefixed with the name of the domain. Local users should be prefixed with the name of the computer. Note: I have not tried this scenario. – Alex Angas Sep 21 at 9:48
show 2 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.