setting logon account and password of a service

  • Thread starter Thread starter yann.bertaud
  • Start date Start date
Y

yann.bertaud

Hello,

I need to set the logon account and password of an installed service on
large number of computers. is there some automatic way of doing this?
ie a batch that is run or some utility which can remotely change the
logon account and password on a bunch of machines?

thx

yann
 
Hello,

I need to set the logon account and password of an installed service on
large number of computers. is there some automatic way of doing this?
ie a batch that is run or some utility which can remotely change the
logon account and password on a bunch of machines?
Hi,

SC.exe maybe.

In a command prompt, run the following command:

sc.exe config /?

I would think obj= is for the logon account name.

To use sc.exe against a remote computer, use it like this:

sc.exe \\SomeComputerNameHere config ....
 
Back
Top