Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Update service account password on multiple servers?

Status
Not open for further replies.

wallst32

MIS
Apr 14, 2003
545
US
Some of my service accounts are used on multiple servers (for example backups), and the password must be changed every so often. Is there any way to automate this process rather than re-entering user information on each server?

Thanks.
 
You might be able to use the command-line program sc to configure it. sc can change service settings on the local computer as well as remote computers. Type sc /? at a command prompt or search Help & Support for sc.

There is a password option on the config sub-command, so you might be able to do something like this:
Code:
sc \\servername config servicename password= newpassword
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top