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://<DC Name>:389/<Full DN of user>" $xuser.psbase.Invoke("SetPassword","Password2")
No Comments