how stop service of other computer over network connection

  • Thread starter Thread starter Hein Heinrichsen
  • Start date Start date
H

Hein Heinrichsen

Hello
is there any way to stop a service of an other computer over a network
connection?
the local command ist "net stop service" but how to send it............
Thanks for the help!
MIchael
 
To stop a service remotly you can use the command sc.
Example:
sc \\%computername% stop "Service Name"
sc \\%computername% start "Service Name"
 
Back
Top