vote up 2 vote down star

I have a set of test accounts that are going to be created but the accounts will be setup to require password change on the first login. I want to write a program in C# to go through the test accounts and change the passwords.

flag

3 Answers

vote up 1 vote down check

You can use the UserPrincipal class' SetPassword method, provided you have enough privileges, once you've found the correct UserPrincipal object. Use FindByIdentity to look up the principal object in question.

using (var context = new PrincipalContext( ContextType.Domain ))
{
   using (var user = UserPrincipal.FindByIdentity( context,
                                                   IdentityType.SamAccountName,
                                                   userName ))
    {
        user.SetPassword( "newpassword" );
    }
}
link|flag
That's only available in .NET 3.5 and up, BTW (the PrincipalContext and all). – marc_s Jul 4 at 19:59
vote up 1 vote down

Here's a great Active Directory programming quick reference:

Howto: (Almost) Everything In Active Directory via C#

See the password reset code near the end.

link|flag
vote up 0 vote down

Hi ,

Thanks a lotfor ur solution.. it worked like a charm for me.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.