Hi all, I have a little problem.. I need to create a class that perform: - retrieve all users whitin a domain in domain controller (domainName is input parameter) - verify if a user is whitin a certain domain in domain controller (user & domainName are input parameters) - verify user,password of that user on a domain in domain controller. I dont' have any ideas on how get these actions. Someone could help me posting a code, useful links, explanations..? Thanks in advance walter
"Wasco" wrote in message news:1141991311.825679.194800@j52g2000cwj.googlegroups.com... | Hi all, | I have a little problem.. | | I need to create a class that perform: | - retrieve all users whitin a domain in domain controller (domainName | is input parameter) | - verify if a user is whitin a certain domain in domain controller | (user & domainName are input parameters) | - verify user,password of that user on a domain in domain controller. | | | I dont' have any ideas on how get these actions. | | | Someone could help me posting a code, useful links, explanations..? | Thanks in advance | walter | Look for the System.DirectoryServices namespace classes in the docs or in MSDN, they wrap ADSI and exactly what you are looking for. Some google search will return numerous samples. Willy.
Thanks a lot!!