Tagged Questions
Windows services are background service processes run by the Service Control Manager on Windows NT based operating systems, similar to daemons or UNIX services.
63
votes
5answers
45k views
Install a .NET windows service without InstallUtil.exe
I have a standard .NET windows service written in C#.
Can it install itself without using InstallUtil?
Should I use the service installer class? How should I use it?
I want to be able to call the ...
61
votes
19answers
36k views
Easier way to start debugging a windows service in C#
Is there a way to easier start stepping through code except to start the service through the Windows Service Controll Management and then attach the debugger to the thread? It's kind of cumbersome and ...
48
votes
4answers
42k views
How do I uninstall a Windows service if the files does not exist anymore?
How do I uninstall a .NET Windows Service, if the service files does not exists anymore?
I installed a .NET Windows Service using InstallUtil. I have now deleteded the files, but forgot to run ...
44
votes
8answers
59k views
Retrieving the COM class factory for component with CLSID {XXXX} failed due to the following error: 80040154
I developed a Windows service using C#.NET to generate PDF report. To generate PDF file I am using a third party dll. The application is running in my Windows XP platform. When I deployed the service ...
38
votes
14answers
38k views
How to create a windows service from java app
I've just inherited a java application that needs to be installed as a service on XP and vista. It's been about 8 years since I've used windows in any form and I've never had to create a service, let ...
34
votes
7answers
11k views
How to make a .NET Windows Service start right after the installation?
Besides the service.StartType = ServiceStartMode.Automatic my service does not start after installation
Solution
Inserted this code on my ProjectInstaller
protected override void ...
34
votes
14answers
20k views
How can a windows service programmatically restart itself?
I need to write robust code in .NET to enable a windows service (server 2003) to restart itself. What it the best way to so this? Is there some .NET API to do it?
29
votes
4answers
15k views
Windows service and timer
I need to create some windows service which will execute every N period of time. The question is - which timer control should I use: System.Timers.Timer or System.Threading.Timer one? Does it ...
28
votes
6answers
9k views
How can I unit test a Windows Service?
.NET Framework: 2.0
Preferred Language: C#
I am new to TDD (Test Driven Development).
First of all, is it even possible to unit test Windows Service?
Windows service class is derived from ...
27
votes
7answers
37k views
How to map a network drive to be used by a service
Suppose some Windows service uses code that wants mapped network drives and no UNC paths. How can I make the drive mapping available to the service's session when the service is started? Logging in as ...
25
votes
14answers
2k views
How do you debug a Windows Service?
I read the MSDN article on the topic. To quote:
Because a service must be run from
within the context of the Services
Control Manager rather than from
within Visual Studio, debugging a
...
25
votes
11answers
55k views
How do I restart a service on a remote machine in Windows?
Sometimes while debugging, I need to restart a service on a remote machine. Currently, I'm doing this via Remote Desktop. How can it be done from the command line on my local machine?
24
votes
8answers
11k views
windows service vs scheduled task
What are the cons and pros of windows services vs scheduled tasks for running a program repeatedly (e.g. every two minutes)?
23
votes
2answers
11k views
How can I verify if a Windows Service is running
I have an application in C# (2.0 running on XP embedded) that is communicating with a 'watchdog' that is implemented as a Windows Service. When the device boots, this service typically takes some time ...
22
votes
4answers
9k views
Inno Setup for Windows service?
I have a .Net Windows service. I can create an installer to install the windows service.
Basically it has to do the following.
Pack installutil.exe (Is it required?)
run installutil.exe ...
20
votes
9answers
8k views
Automatically start a Windows Service on install
I have a Windows Service which I install using the InstallUtil.exe. Even though I have set the Startup Method to Automatic, the service does not start when installed, I have to manually open the ...
19
votes
2answers
15k views
Installing a windows service from a Visual Studio Installer project
A colleague has written a Windows Application and left me to do the installers. I have created the installer project through Visual Studio and added the primary output of the service project to the ...
19
votes
5answers
19k views
How to install a windows service programmatically in C#?
I have 3 projects in my VS solution. 1 is a web app, the other is a windows service and the last one a setup project for my web app.
What i want is by the end of the installation of the web app in ...
18
votes
9answers
35k views
How might I schedule a C# Windows Service to perform a task daily?
I have a service written in C# (.NET 1.1) and want it to perform some cleanup actions at midnight every night. I have to keep all code contained within the service, so what's the easiest way to ...
18
votes
9answers
5k views
Am I Running as a Service
I am currently writing a little bootstrap code for a service that can be run in the console. It essentially boils down to calling the OnStart() method instead of using the ServiceBase to start and ...
18
votes
4answers
8k views
Running a Ruby Program as a Windows Service?
Is it possible to run a ruby application as a Windows Service? I see that there is a related question which discusses running a Java Application as a Windows Service, how can you do this with a Ruby ...
17
votes
9answers
25k views
Service has zero application (non-infrastructure) endpoints
I recently created a WCF service (dll) and a service host (exe). I know my WCF service is working correctly since I am able to successfully add the service to WcfTestClient.
However, I seem to be ...
17
votes
3answers
6k views
ClickOnce deploy a Windows Service?
Is it possible to deploy a Windows Service using ClickOnce? If so, how do you achieve this?
Currently we have to use a Deployment project, and the installation process could be simplified greatly by ...
16
votes
3answers
7k views
System error 5 Access is denied when starting a .NET service
When I try to start a service I created in Visual Studio I receive the following error:
System error 5 has occurred.
Access is denied.
I am running the command line with elevated privileges, so ...
16
votes
2answers
6k views
UnhandledException handler in a .Net Windows Service
Is it possible to use an UnhandledException Handler in a Windows Service?
Normally I would use a custom built Exception Handling Component that does logging, phone home, etc. This component adds a ...
15
votes
10answers
9k views
What is the most reliable way to create a custom event log and event source during the installation of a .Net Service
I am having difficulty reliably creating / removing event sources during the installation of my .Net Windows Service.
Here is the code from my ProjectInstaller class:
// Create Process Installer
...
14
votes
5answers
499 views
Problem with testing a Windows service
I want to make a Windows service that will access my database. My database is SQL Server 2005.
Actually I am working on a website and my database is inside our server. I need to access my database ...
14
votes
5answers
207 views
What are the best practices when running a process as a windows service?
Is there any things to take care of when running your process or executable as service.Things like silent logging.Critical error reporting scenarios? etc? How do you handle it ?
14
votes
3answers
7k views
Creating an MSI installer for a Windows Service
I have a window service project in visual studio 2008. I've also added the setup and deployment project. Unfortunately, when I install it, the services does not show up in the services mmc snapin.
I ...
14
votes
9answers
21k views
How can a Windows service execute a GUI application?
I have written a Windows service that allows me to remotely run and stop applications. These applications are run using CreateProcess, and this works for me because most of them only perform backend ...
14
votes
9answers
10k views
How can I run a Windows GUI application on as a service?
I have an existing GUI application that should have been implemented as a service. Basically, I need to be able to remotely log onto and off of the Windows 2003 server and still keep this program ...
13
votes
4answers
11k views
How to make a call to my WCF service asynchronous?
I have a WCF service that I call from a windows service.
The WCF service runs a SSIS package, and that package can take a while to complete and I don't want my windows service to have to wait around ...
13
votes
6answers
11k views
Best guide for creating Windows Services in C# .NET?
I'm looking to convert a small .NET console application into a Windows Service. I'd like to build two versions, one using .NET 2.0 and another with .NET 3.5 .
Are there radically different ...
13
votes
5answers
6k views
I want my C# Windows Service to automatically update itself
Is there a framework that can be used to enable a C# Windows Service to automatically check for a newer version and upgrade itself? I can certainly write code to accomplish this, but I am looking for ...
13
votes
5answers
35k views
How do you run CMD.exe under the Local System Account?
I'm currently running Vista and I would like to manually complete the same operations as my Windows Service. Since the Windows Service is running under the Local System Account, I would like to ...
13
votes
3answers
2k views
Best Method to run a Java Application as a *nix Daemon or Windows Service?
I am looking for the best method to run a Java Application as a *NIX daemon or a Windows Service. I've looked in to the Java Service Wrapper, the Apache Commons project 'jsvc', and the Apache Commons ...
12
votes
4answers
1k views
A standalone Delphi application that can also be installed as windows service
In Delphi you can create a standalone Windows VCL Forms application. You can also create a Windows service application.
Is it possible to combine the two in a single application that can run as a ...
12
votes
3answers
1k views
Installing Windows Service programmatically
How do I install a Windows Service programmatically without using installutil.exe?
Thanks
12
votes
2answers
1k views
Install Windows Service with Recovery action to Restart
I'm installing a Windows Service using the ServiceProcessInstaller and ServiceInstaller classes.
I've used the ServiceProcessInstaller to set the start type, name, etc. But how do I set the recovery ...
12
votes
3answers
3k views
Windows Service vs Windows Application - Best Practice
When should I go for a Windows Service and when should I go for a "Background Application" that runs in the notification area?
If I'm not wrong, my design decision would be, any app that needs to be ...
12
votes
5answers
34k views
Run batch file as a Windows service
In order to run one application, a batch file has to be kicked off (which does things like start Jetty, display live logs, etc). The application will work only if this batch file is running. I am ...
12
votes
7answers
8k views
Using Process.Start() to start a process as a different user from within a Windows Service
I'd like to periodically run an arbitrary .NET exe under a specified user account from a Windows Service.
So far I've got my windows service running with logic to decide what the target process is, ...
12
votes
4answers
11k views
How to uninstall a Windows Service when there is no executable for it left on the system?
How do I uninstall a Windows Service when there is no executable for it left on the system? I can not run installutil -u since there is not executable left on the system. I can still see an entry for ...
12
votes
2answers
6k views
System.BadImageFormatException “invalid format” when trying to install service with installutil.exe
I am trying to install a Windows service using InstallUtil.exe and am getting the error message
System.BadImageFormatException - invalid format
What gives?
12
votes
9answers
23k views
How to uninstall a windows service and delete its files without rebooting
My current project involves deploying an upgraded .exe file that runs as a Windows Service. In order to overwrite the existing .exe with the new version, I currently need to:
(1) stop the service
...
12
votes
8answers
35k views
Simplest way to restart service on a remote computer
What's the easiest programmatic way to restart a service on a remote Windows system? Language or method doesn't matter as long as it doesn't require human interaction.
12
votes
5answers
14k views
Using InstallUtil and silently setting a windows service logon username/password
I need to use InstallUtil to install a C# windows service. I need to set the service logon credentials (username and password). All of this needs to be done silently.
Is there are way to do something ...
12
votes
4answers
7k views
Installing a .NET service using InstallUtil
I'm trying to install a .NET service I wrote. As recommended by MSDN, I'm using InstallUtil. But I have missed how I can set the default service user on the command-line or even in the service ...
11
votes
2answers
5k views
windows service written in c# .NET 4 vs2010 will not install on Server 2008 R2 Enterprise
I've written many versions of windows services and installed them on a 64-Bit system with 32 GB running Server 2008 R2 Enterprise.
I create the services using this recipe:
...
11
votes
3answers
642 views
Thoughts on running Windows Service type apps on ASP .NET 4 with StartMode=“AlwaysRunning”
Usually I would look at writing a Windows Service to manage tasks that aren't suited to being hosted in a web application. These types of tasks are usually long running processes or scheduled tasks. ...