Skip to main content

Changing Password - in AD, when you're changing one of your other accounts, not the logged in account

 

Use Powershell 

Step 1 - Put your existing password in a Secure String 

$oldPassword = Read-Host "Your old Password" -AsSecureString 

Step 2 - Start the password change

set-AdAccountPassword -Identity paul-admin -OldPassword  $oldPassword

Step 3 - Enter your new password

You'll be prompted for your new password...

Please enter the desired password for 'CN=xxxx,OU=Admin Users,OU=Users,OU=Privileged,DC=CAIS,DC=com,DC=edu,DC=au'

Password: **************************

Repeat Password: **************************

Comments

Popular posts from this blog

Javascript Form Validation

It's real simple. All you need to do is call a javascript function in a html  " onsubmit " in the form tag as a javascript return, like this       <form method="post" action="dosomething.php" onsubmit="return validateForm();"> If the code completes ok, the form is then sent to the page listed in "action" http://www.w3schools.com/js/js_form_validation.asp If the function specified in the onsubmit returns false, then the form is not sent to the page mentioned in action.