Hi all, I work with sharepoint Portal server 2003. We use the Active Directory user information to log in to a sharepoint site. I want to display the Password...
We have a useful class from ch 10 in our book called DomainPolicy that may be of use for you to retrieve the password policy data for a domain. You can get...
I've found lots of information on ADSI providers but I was wondering if the low-level APIs that the providers sit on top of and actually comunicate with the AD...
There are two ADSI providers that talk to AD: LDAP and WinNT. LDAP talks to AD via the LDAP protocol and essentially just uses the Windows LDAP API ...
Hi, I'm writing a program using .NET Framework Express 2.0 (C#) from a WIN XP machine which successfully creates a specific list of Local Groups on a selected...
What happens if you put the SID of the local group directly in the DACL? You can create a SecurityIdentifier object instead of an NTAccount object as your...
I know I haven't posted any answers here. I have done a quick search. AD is really not my area. I have to deal with as part of looking after an intranet. The...
I have tried that, but to be honest it's not been tested. There are about 70 experts in the team looking after several thousand servers (don't know exactly how...
The idea here is that the SID would begin resolving to the name of the group rather quickly. The point of setting the ACL with the SID would just be to get...
Hi All, Can anybody tell me "How to change the "manager" property of the Organization Tab for particular User" programatically. Thanks & Regards, Tarak....
IRC, you just set the 'manager39; attribute using the DN value of the manager object. Note, it must be the full DN - nothing else will work. ... [Non-text...
Does anyone know where I could look for some sample code (in C) to connect to Active Directory using AD-specific or generic LDAP libraries from an MS-DOS...
Am I correct that the only way to get/set mailbox quotas (Exchange Server 2003) from a .Net Framework 2.0 windows application is to use CDOEXM.DLL? And that...
That is the only supported mechanism, and yes, it sucks. However, the mailbox size limits are actually just attributes on the user object and can be set...
Hi, I am using AD DirSync in .Net2.0 using cookies and trying to retrieve all user from a particular domain. I am getting the following errors: 1. When I run...
Dear Sir, I know what is the cause of your problems from my viewpoint: 1. Deadlock program can be happened when one user lock a resource and need to another...
Thanks Amal for your suggestion & help. But i am looking for more input in technical terms to fix these issues. ... [Non-text portions of this message have...
Using straight VB.NET 2005 code (ASPX), is it possible to obtain a list of the SMTP addresses associated with an Exchange 2003 mailbox by using one of those...
we have a test instance of ADAM residing in a test domain. i am trying to bind to it with an id in our production domain. i am unable to do so in ldp. is...
It depends on what you mean. If you are using a proxy user or you are trying a bind redirect, there are two different answers I think. I am guessing you are...
It depends. Is there a trust between these two domains? When you use Windows auth for binding to ADAM with a Windows user account, the authentication is...
A mailbox is associated with an object that has a homeMDB. The addresses for that object are in the proxyAddresses attribute, so you can read that. The SMTP...
Thank you! It works like a charm. Except I'm only retrieving a maximum of four ProxyAddresses regardless of the actual numbe associated with the mailboxr. It...
I think that I see it now. The code is using the wrong count value in the line. For j = 0 To thisResult.Properties.Count Instead of a for loop, I should move...
You are using the number of attributes returned as your indexer into the number of attribute values for a specific attribute. That is not correct. I'd suggest...
Posting my question again as I didn't receive any solution to these issues. ... <vinodjnair@...> wrote: Hi, I am using AD DirSync in .Net2.0 using cookies and...
Hi, I am able to retrieve the samAccountName, ObjectGUID properties of AD users using the Search object. But I would like to know how can i retrieve...