C # change the computer password and reset the computer password DirectoryEntry.

Source: Internet
Author: User

C # The method for changing the computer password is as follows:


/// <Summary>
/// Change the Windows Account Password
/// </Summary>
/// <Param name = "username"> </param>
/// <Param name = "oldPwd"> </param>
/// <Param name = "newPwd"> </param>
Public static void ChangeWinUserPasswd (string username, string oldPwd, string newPwd)
{
Try
{
DirectoryEntry localMachine = new DirectoryEntry ("WinNT: //" + Environment. MachineName + ", computer ");
DirectoryEntry user = localMachine. Children. Find (username, "user ");
Object [] password = new object [] {oldPwd, newPwd };
Object ret = user. Invoke ("ChangePassword", password );
User. CommitChanges ();
LocalMachine. Close ();
User. Close ();
}
Catch (Exception)
{

}
} Www.2cto.com
C # reset the computer password


/// <Summary>
/// Reset the password of the specified user
/// </Summary>
/// <Param name = "userName"> User name </param>
/// <Param name = "password"> New password </param>
Public static void ResetUserPassword (string userName, string password)
{
String _ Path = "WinNT: //" + Environment. MachineName;

DirectoryEntry machine = new DirectoryEntry (_ Path); // obtain the computer instance
DirectoryEntry user = machine. Children. Find (userName, "User"); // Find the user
If (user! = Null)
{
User. Invoke ("SetPassword", password); // user password
User. CommitChanges ();
}

}

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.