Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
2k views

How to remotely control a Windows Service with ServiceController?

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", ...
3
votes
2answers
737 views

how to get phyiscal path of windows service using .net?

I have to get the absolute path of a windows service in a .Net Admin application. I am using ServiceController of .Net as shown below. ServiceController serviceController = new ...
2
votes
2answers
214 views

C# Query Windows Service

I have been using an application that queries Windows Services running on remote servers and writes the Machine Name, Service Name, and Status to a database. However, I want to try and capture the ...
2
votes
3answers
2k views

ServiceController permissions in Windows 7

I have an application which consists of a service and an executable. Essentially it's a forms application that is responsible for starting and stopping a service under specific circumstances. On ...
2
votes
2answers
917 views

Halt batch file until service stop is complete?

I'm using a batch file to stop a Windows service. I'm using the sc command, but I'm open to other ideas, given the question below. The problem is that the batch file proceeds while the service is ...
2
votes
2answers
1k views

Send command to service from C++

how can I send command to a Windows service from C++? Equivalent .NET code is: ServiceController sc = new ServiceController("MyService"); sc.ExecuteCommand(255);
2
votes
1answer
89 views

Checking for an unregistered/missing service

How can I use ServiceController to tell me if a service has been registered or not? In the code fragment below, the check for a null DisplayName results in a System.InvalidOperationException. Is ...
1
vote
1answer
49 views

Modifying service control permissions in a Windows MSI installer

So right now I'm trying to change permissions on a windows service by using the command: sc sdset SERVICENAME PERMISSIONS I have placed this in an MSI installer as an action and it seems to execute ...
1
vote
1answer
317 views

C# Service Status On Remote Machine

I'm an expert programmer, so therefore, I don't have a clue as to WTH I'm doing :) On a serious note; no, I'm not expert by any means. I do have a problem though, and don't know how to fix it. The ...
1
vote
4answers
413 views

How to Debug a Windows Service

I have create a windows service using the Code Project Article. I am able to install the service and delete the service using -i and -d switch. I am able to see the service in services.msc but when I ...
1
vote
1answer
201 views

Trying to start a windows service from a windows application giving System.ComponentModel.Win32Exception: Access is denied

I am trying to develop a windows application to start/stop and monitor status of two particular services. The problem is I am getting System.ComponentModel.Win32Exception: Access is denied ...
1
vote
2answers
481 views

Control a service on a remote server from IIS

Please note: In each step I describe below I'm logged in as the same domain user account. I have a web application that controls a service on a remote machine (via ServiceController). When I ...
0
votes
0answers
80 views

Starting remote Windows services with ServiceController and impersonation

I have a .NET MVC3 application that needs to be able to turn a remote service on and off. In order to do this I am impersonating a specific user account via WindowsIdentity.Impersonate(). To test the ...
0
votes
0answers
38 views

C++ :: error C2065: 'ServiceController' : undeclared identifier [closed]

Possible Duplicate: error C2065: 'ServiceController' : undeclared identifier :: It is in C++ [ NOT in C# ] My C++ code has this line : ServiceController sc = gcnew ...
0
votes
0answers
36 views

error C2065: 'ServiceController' : undeclared identifier :: It is in C++ [ NOT in C# ]

My C++ code has this line : ServiceController sc = gcnew ServiceController( "MySQL" ); if ( (sc->Status == (ServiceControllerStatus::Stopped) ) || (sc->Status == ...
0
votes
2answers
75 views

Windows service started with ServiceController throws “RPC Server not available” when performing WMI connection

I have a Windows service being installed with my installer, and then started with the use of ServiceController: public static int StartService(string serviceName, int timeoutMilliseconds) { ...
0
votes
3answers
75 views

WPF making ServiceController[] Observable

So im trying to make a data-grid that displays some information about local window services, mine in particular, I would like to have the display name and status of the service, and then have a button ...
0
votes
1answer
32 views

Not able to start and stop service from remote machine

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.
0
votes
2answers
209 views

ServiceController seems to be unable to stop a service

I'm trying to stop a Windows service on a local machine (the service is Topshelf.Host, if that matters) with this code: serviceController.Stop(); ...
0
votes
1answer
308 views

Starting a service in ASP.NET/C# with the right permissions

on my website (written in ASP.NET/C#) I want the moderaters to be able to start a certain service. The code I have for this is: ServiceController svcController = new ...
0
votes
2answers
382 views

ExecuteCommand servicecontroller - cannot excecute command on service

I am using the service controller executecommand function, like so: ServiceController serviceController = new ServiceController("a Service", Environment.MachineName); ...
0
votes
1answer
111 views

How can I respond to a change in status for a Windows Service?

I wonder if there is any possible way to get or create an event for a status changed of a Windows Service. I know that the ServiceController class does not have the event, but it has the status. Is ...
0
votes
1answer
255 views

ServiceController just get stuck without any exceptions

I'm using ServiceController to restart windows server. Here is my C# code. ServiceController service = new ServiceController("ServiceName"); service.Stop(); ...
0
votes
1answer
364 views

Remotely install Windows service

How do I remotely install a Windows service using C#? (I prefer not calling sc.exe / psexec / powershell remoting). Thanks! Yuval
0
votes
2answers
51 views

How do I know the Description of the service that is running in remote machine in C#?

I know the service that is running using ServiceController sc = new ServiceController(); ServiceController.GetServices(DropDownListMachineName.SelectedValue)) but ServiceController does not ...
0
votes
1answer
351 views

ServiceController in a Windows Service

I'm trying to use ServiceController.GetServices() method to get the list of all the services. In a console application, it works OK, but I get an empty list if I call this method in a windows service. ...
0
votes
1answer
103 views

Instantiating ServiceController takes sometimes too much time

i am creating an instance of ServiceController using a remote/local machine name and the name of the service. When I type sth. like stackoverflow.com as machine name the contructor blocks for a long ...
0
votes
1answer
434 views

ServiceController.Stop() doesn't appear to be stopping anything

My dev box is a Windows 7 (x64) machine. I've got some code (C#, .net 2.0) that in certain circumstances, checks to see if a service is running and then stops it. ServiceController matchedService = ...
0
votes
2answers
1k views

View status of service running on remote machine

The conditions are - I don't have administrator privilege - I want to see the status of a service in remote machine (server) I use the following code (vb.net with framework 2.0) to see the status ...
0
votes
1answer
348 views

unable to install window service using 'servicecontroller'

I want to install a windows service on a remote service. In the following blog you have said to use 'servicecontroller' ...
0
votes
1answer
705 views

ServiceController Required Privileges

I'm using a ServiceController to Start services on a remote machine. When I want to query the services on that machine, I get the following exception: Cannot open Service Control Manager on computer ...