I recently had a situation in which for testing purposes I had to know the password for a managed service account. There’s no way to know the existing password but you can easily change it. I found a quick and easy to do this via PowerShell. Run the below command:
Set-SPManagedAccount -identity Domain\User -NewPassword (Converto-Securestring “P@ssword” -AsPlainText -Force) -SetNewPassword
After you’re done, make sure to change the password back to a randomly generated password by SharePoint in Central Admin.
Leave a Reply