如何在初次登录时更改ADS密码

时间:2010-06-02 14:55:08

标签: c# asp.net ads

我想在下次登录ADS容器时更改初始分配的密码。 如何以编程方式执行此操作?

1 个答案:

答案 0 :(得分:0)

您可以使用DirectoryEntry类更改Active Directory中的密码:

DirectoryEntry directoryEntry = new DirectoryEntry(ADPath, ADUser, ADPassword, AuthenticationTypes.Secure);
directoryEntry.Invoke("ChangePassword", new object[]{strOldPassword, strNewPassword});