Thanks
example using ad powershell's Set-ADAccountPassword cmdlet:
Set-ADAccountPassword johndoe -Reset -NewPassword (ConvertTo-SecureString
-AsPlainText "p@ssw0rd" -Force)
example using quest's Set-QADUser cmdlet:
Set-QADUser johndoe -UserPassword "p@ssw0rd"
I don't have the persmission to set a user's password. I only have this
user's current password, how can I change it? Is there any .NET class for
this?
Thanks,
You're going to need permission to reset the password regardless of the
cmdlet or .NET class being used.