How to remotely control a Windows Service with ServiceController?
Posted
by Amokrane
on Stack Overflow
See other posts from Stack Overflow
or by Amokrane
Published on 2010-06-08T09:54:02Z
Indexed on
2010/06/08
13:12 UTC
Read the original article
Hit count: 335
Hi,
I'm trying to control Windows Services that are installed in a remote computer. I'm using the ServiceController
class.
I have this:
ServiceController svc = new ServiceController("MyWindowsService", "COMPUTER_NAME");
With this, I can get the status of the Windows Service like this:
string status = svc.Status.ToString();
But I can't control the Windows Service (by doing svc.Start();
or svc.Stop();
).
I get the following exception:
Cannot open Servicexxx service on computer 'COMPUTER_NAME'
That's normal, I suppose there is something to do with access permissions. But how? I've looked into Google but didn't find what I was looking for. However I often read something related to impersonation, but I don't know what that means.
NB: The local and remote computers are both running Win XP Pro.
Thanks.
© Stack Overflow or respective owner