|
Changing Windows 2000 Password in C#
|
|
|
|
|
Sunday, 08 March 2009
|
|
HTML clipboard
HTML clipboard
using System;
using System.DirectoryServices;
public class MyChangePasswordExample {
public static void Main(string[] args) {
DirectoryEntry myDirectoryEntry;
myDirectoryEntry = new
DirectoryEntry(@"WinNT:
myDirectoryEntry.Invoke("setPassword", "NewPassword");
myDirectoryEntry.CommitChanges();
}
}
c# will alow to change the your windows 2000 password
using System.DirectoryServices name space
Enjoy with this project!
Try to change your Operating System password
|
|
Last Updated ( Sunday, 08 March 2009 )
|