Click here to Skip to main content
15,884,628 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,

Is there any way to get this.

Thanks
Sreenath.
Posted
Updated 1-Jun-11 4:27am
v2

1 solution

"outlook group ID" = distribution list?

You can query Active Directory, searching for "CN=DL_name"

SearchResult r = SearchObj.FindOne(); 
foreach (string user in r.GetDirectoryEntry().Properties["member"]) 
Response.Write(user);


In client tools you can also use Microsoft Outlook Object Library component.

http://msdn.microsoft.com/en-us/library/bb645998.aspx
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900