using (DirectoryEntry entry = new DirectoryEntry())
{
string filter =
string.Format("(|(|(mail={0})(proxyAddresses=smtp:{0}))(legacyExchangeDN={0}))",
groupAccountsEmail);
DirectorySearcher search = new DirectorySearcher(entry, filter, new
string[] { "member" });
search.FindAll();
}
the search.FindAll method results in displaying an error message "Active
Directory Client is not installed on this computer".
The server impersonates as a user which has priveleges to access the AD.
Can anyone guide me what is wrong?
Thanks
Eyal
Joe K.
"EyalS" <eyal...@hotmail.co.il> wrote in message
news:%23yP4xzz...@tk2msftngp13.phx.gbl...