[DllImport("netapi32.dll", CharSet=CharSet.Unicode)]
static extern int NetUserChangePassword(string domain, string user, string oldPassword, string newPassword);
Declare Function NetUserChangePassword Lib "netapi32.dll" (ByVal domain as String, ByVal user as String, ByVal oldPassword as String, ByVal newPassword as String) As Integer
None.
Do you know one? Please contribute it!
None.
To change the password of the current user (or currently impersonated user), pass null for the first two args.
Please add some!