14-02-20 09:23 AM
14-02-20 12:00 PM
14-02-20 01:08 PM
14-02-20 01:53 PM
14-02-20 02:09 PM
PrincipalContext pc = new PrincipalContext(ContextType.Domain);
UserPrincipal up = UserPrincipal.FindByIdentity(pc, username);
up.ChangePassword(password, txtNewChangedPassword.Text);
up.Save();
https://stackoverflow.com/questions/31010793/change-password-windows-ad-c-sharp
Thanks to Stack Overflow