We have some winodow services on the remote machine. I am not able to start and stop that services using service controller from my machine.

link|improve this question

59% accept rate
feedback

1 Answer

up vote 1 down vote accepted

You can use Powershell and supply it with the appropriate credentials:

PS C:\Users\YourUserName>$remoteComp = "remoteComputerName"
PS C:\Users\YourUserName>$svc = "Service Name"
PS C:\Users\YourUserName>$c = Get-Credential
PS C:\Users\YourUserName>$obj = (gwmi -computername $comp -class Win32_Service -computer $remoteComp -Credential $c | Where-Object { $_.Name -match "^$svc*" }

Now you can use $obj to stop and start the service

PS C:\Users\YourUserName>$obj.StopService()
PS C:\Users\YourUserName>$obj.StartService()

In addition, if you want to see the methods and properties available for $obj use this command:

PS C:\Users\YourUserName>$obj | Get-Member
link|improve this answer
Thanks for help brheal. but i want to do it from .net application too. – Denish Aug 5 '11 at 5:49
To call it from a .net app check out the Powershell API . To get it to work with .net 4 see [stackoverflow.com/questions/2094694/…). – brheal Aug 5 '11 at 13:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.