Start services.msc connected to remote machine

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I would like to be able to do something like services.msc /target:<machine>.
Is this possible?
 
SWDWS said:
I would like to be able to do something like services.msc
/target:<machine>.
Is this possible?

When you have Services open, click "Action", then "Connect to another
computer". I don't know if you can do it with command line switches, but
you can browse for the computer you want to control.

Darhl
 
Darhl Thomason said:
When you have Services open, click "Action", then "Connect to another
computer". I don't know if you can do it with command line switches, but
you can browse for the computer you want to control.

Darhl

sc.exe would be the Command Line equivalent.
 
Of course I already know how to do this within the gui. I want to, from a
list, right click and launch services.msc already remoted to <machine>.
 
This is very simple: refer below code
services.msc /computer=REMOTEmachinename

Example code:
public
void ServicesMSC()

{
try

{
System.Diagnostics.
ProcessStartInfo objPInfo = new System.Diagnostics.ProcessStartInfo("services.msc");

objPInfo.Arguments =
"/computer=" + this.Hostname;

System.Diagnostics.
Process.Start(objPInfo);

}
catch (Exception ex)

{
Console.WriteLine(ex.ToString());

MessageBox.Show("Error while performing Services.msc. Error Details:" + ex.Message);

}
}
 
Back
Top