RE: Search Filter in Active Directory

2008-12-18 Thread Giuoco, Aaron
o: [email protected] > Subject: Search Filter in Active Directory > > Hi , > > Can any body suggest me the search filter based on the > ADGUID to update fields in active directory > > I am using > search.Filter = String.Format(CultureInfo.InvariantCulture, &g

RE: Search Filter in Active Directory

2008-12-16 Thread Miller, Don C.
ubject: Re: Search Filter in Active Directory Hi, we're trying to convert the string representation of a GUID like (EEF00083-3454-5c6c-9ACB- FC9E8394FC8D, for example) OR like ("bd1b2ce5f9bb9546b032aaf0008dc9ea") format to that of the actual GUID datatype appropriate to b

Re: Search Filter in Active Directory

2008-12-16 Thread Chris Ridd
On 16 Dec 2008, at 06:21, Ambuj wrote: Can any body tell me do that same thing in C#.net Try asking on a C#.net list instead of a perl list. Cheers, Chris

Re: Search Filter in Active Directory

2008-12-16 Thread Ambuj
Hi, we're trying to convert the string representation of a GUID like (EEF00083-3454-5c6c-9ACB- FC9E8394FC8D, for example) OR like ("bd1b2ce5f9bb9546b032aaf0008dc9ea") format to that of the actual GUID datatype appropriate to be stored inside of Active Directory for querying into that. my req

Re: Search Filter in Active Directory

2008-12-15 Thread Karsten Kankowski
Hi Ambj, well, If I browse one of our AD, following objects are used: top person organizationalPerson contact In none of theses object a atribute GUID is included. Well, do you able to browse ( via Jexplore ore something else ) the AD to see which objects are available?. The object "person" OID

Search Filter in Active Directory

2008-12-15 Thread Ambuj
Hi , Can any body suggest me the search filter based on the ADGUID to update fields in active directory I am using search.Filter = String.Format(CultureInfo.InvariantCulture, "(&(GUID= {0})(objectClass=person))", a); where a is the variable which contains the value of ADGUID Please re