Was asked how to set an existing users password and here is how
You need the FULL dn of the user (usually some like cn=user,ou=ou,dc=domain etc, etc)
$xuser = [ADSI]"LDAP://:389/" $xuser.psbase.Invoke("SetPassword","Password2")
Was asked how to set an existing users password and here is how
You need the FULL dn of the user (usually some like cn=user,ou=ou,dc=domain etc, etc)
$xuser = [ADSI]"LDAP://:389/" $xuser.psbase.Invoke("SetPassword","Password2")