How to start and and stop a windows service remotely using PSEXEC Preferable the syntax to write I tried the cmdlet given below
psexec \Server -u Administrator -p Somepassword ServiceName
Please can any body help me in this Thank You in advance
|
|
How to start and and stop a windows service remotely using PSEXEC Preferable the syntax to write I tried the cmdlet given below psexec \Server -u Administrator -p Somepassword ServiceName Please can any body help me in this Thank You in advance
|
||||
|
|
|
I can't test this right now, but it ought to be:
and
|
||
|
|
|
|
Another alternative to psexec is sc. You can use sc to start or stop services remotely:
There is no "login" information, so maybe you need to execute
before executing sc command. One advantage over psexec is that no console window shows in the remote machine. |
||
|
|
|
|
PSService on SysInternals is specifically for remotely controlling services::`
where:
Include the -u switch with a username and password to login to the remote system if your security credentials do not permit you to obtain performance counter information from the remote system. If you specify the -u option, but not a password with the -p option, PsService will prompt you to enter the password and will not echo it to the screen. |
||
|
|