The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
34 views

Can not access the windows service description through the service controller in VB.Net

I have this Windows Service from my company : i want to get the service description from it in code behind! but for some reason it does not return the service description. Can anyone help me with ...
0
votes
1answer
36 views

Get service path from services.msc c#

I'm trying to get service executable path from services.msc I wrote the next code: var service = ServiceController.GetServices().Where(p => p.ServiceName.Equals("Service name", ...
0
votes
3answers
97 views

Sc.exe To Install an exe as Service?

I've been spending a lot of time reading about the sc.exe to run an executable as a Windows Service and it seems it should be fairly straighforward bu I'm having some issues get it to work without ...
0
votes
1answer
246 views

Cannot stop the service using ServiceController in .NET 3.5

I'm working in .NET 3.5 and I have the problem with stopping some service using ServiceController. I searched whole internet and I found no solution to my problem ;) Here's how I do that: using ...
0
votes
1answer
78 views

sc.exe config changing credentials inside OnStart of Windows Service

I want to pull credentials for a service from a database (be more dynamic) I am using sc.exe to change the credentials inside OnStart before I call .Start() on the service. The sc.exe change works, ...
0
votes
1answer
142 views

Do you know any alternatives to ServiceController class (C#)

The problem is that we don't have a way to 'cancel' a slow/never starting service once we attempted to start it, if its taking too long: ServiceController ssc = new ServiceController(serviceName); ...
0
votes
1answer
110 views

ServiceController.ExecuteCommand: how to get data back

In .NET, the ServiceController class allows you to send a custom command to a service using the ExecuteCommand method. I would like to be able to query the service for its status (a custom notion of ...
0
votes
0answers
137 views

Using ServiceController or other to programmatically create an unmanaged kernel driver service

I have a C/C# mixed project composed by a kernel driver written in C and an application written in C#. Right now, to create the kernel driver service and run it, i'm using the native APIs ...
1
vote
1answer
159 views

How to stop a windows service that has multiple threads cannot be stopped

I have a windows service written in C# that creates multiple threads, and some threads have legacy code and I don't have enough time/access to legacy code to wait for all these threads to stop before ...
0
votes
1answer
169 views

'wix execute batch before uninstall with administrator

My WiX XML file installs app that contains windows-service named OLOLO_SERVICE (for example). I want to stop this service when installing/reinstalling my app. I use CustomAction with ExeCommand='sc ...
0
votes
0answers
163 views

Service not found after installing using AssemblyInstaller

Context Windows 2008 64 bit. I have a .NET service installed that acts as an installer. Background I'm using this code (credit: Marc Gravell) to install a service: using (var inst = new ...
0
votes
2answers
295 views

How do I set up the security to remotely stop and start a WCF service?

This is a long post, so here's the meat of my question up-front: I'd like to use the ServiceController class in C# to control services on another computer, but it looks like I need to impersonate an ...
0
votes
1answer
207 views

Automatically Stop Windows Service at Uninstall

When my service is installed I have a handler that starts the service after it has been installed. private void InitializeComponent() { ... this.VDMServiceInstaller.AfterInstall += ...
1
vote
2answers
464 views

Communicate with a Windows Service using ServiceController class

I have a windows services project consisting of two services, service1 and service2. How can we communicate between the two services? For example, how can we have have service2 started by service1? ...
2
votes
0answers
1k 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
104 views

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

Possible Duplicate: error C2065: 'ServiceController' : undeclared identifier :: It is in C++ [ NOT in C# ] My C++ code has this line : ServiceController sc = gcnew ...
1
vote
2answers
550 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
328 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 ...
1
vote
1answer
213 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 ...
0
votes
1answer
99 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.
2
votes
1answer
3k 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 ...
3
votes
2answers
1k 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 ...
0
votes
2answers
2k 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
2k 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 ...
1
vote
2answers
1k 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); ...
1
vote
1answer
406 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
620 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(); ...
2
votes
1answer
1k 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
1
vote
6answers
2k 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 ...
0
votes
2answers
82 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 ...
1
vote
1answer
644 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 ...
4
votes
3answers
7k 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 ...
0
votes
1answer
593 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. ...
7
votes
2answers
10k 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", ...
5
votes
2answers
3k 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 ...
0
votes
1answer
191 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
614 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 = ...
7
votes
2answers
2k 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 ...
0
votes
2answers
3k 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
529 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' ...
2
votes
2answers
2k 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
189 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 ...
0
votes
1answer
996 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 ...
1
vote
2answers
614 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 ...