How to change MSSQL administrator password for Plesk?

Go to command prompt:

for local server use:
osql -E -Q "exec sp_password NULL,'new_password','sa'"

for remote server use:
osql -S servername_or_address -E -Q "exec sp_password NULL,'new_password','sa'"

Note: Your account must have administrator rights on the server.
Your rating: None