Windows services are background service processes run by the Service Control Manager on Windows NT based operating systems, similar to daemons or UNIX services.

learn more… | top users | synonyms (3)

7
votes
2answers
256 views

Order Of Method Calls in a Windows Service

In what order to the method calls happen in a windows service? We are having a timing issue and I think it is due to the constructor taking too long to complete processing. This is a similar issue ...
1
vote
1answer
13 views

How do i run a ServiceStack console project as a Windows Service?

I have create a ServiceStack console application that works great, but of course, I have to leave it running after triggering it from a command prompt. I want to run this as a Windows Service. I'm ...
-3
votes
0answers
11 views

Schedule Window Service in java [closed]

I have create a window service in java using java service wrapper. I want to run this window service after a specific time again and again.
0
votes
3answers
2k views

background worker with windows service

I'm creating a windows service in visual studio 2010 with c# and i have few methods like add, multiply and others which i'm putting in onStart method. Now i want these methods to run after every five ...
0
votes
0answers
13 views

Wix v3.5 install instances of Windows service

I've been trying to write a Wix installer which is capable of installing multiple instances of a Windows Service side by side. I am using WIX v3.5 (can't upgrade due to other issues). The following ...
0
votes
1answer
48 views

Application works properly in console but terminate in window service

I made an console application in Visual c++ in VS 2010. I added the console handler so that when I press Ctrl+C the application may terminate successfully and it worked for me without error. Later I ...
0
votes
1answer
10 views

Create Window Service in java using Java Service Wrapper

i have follow this tutorial to run a java class as a window service. Java Service Wrapper HelloWorldServer Example I did a minor changes i change the HellowWroldServer class to as follow public ...
-1
votes
0answers
34 views

Visual studio JIT error

i am getting this error when i stop the window service,the service is made in vs2010 using vc++. Can you tell how to remove this error? Thanks
31
votes
8answers
12k views

How do i create an InstallShield LE project to install a windows service?

I downloaded Visual Studio 2012 yesterday when it was released on MSDN. I have noticed that a few of the project types that we had in 2010 are gone or different. The biggest difference for me right ...
0
votes
3answers
896 views

Slow cheetah not transforming endpoint tags in app.config

i love SlowCheetah for what it is, but having some issues with getting it to transform endpoints in my app.config. I was hoping maybe someone could take a look and see what I am missing or has had ...
2
votes
1answer
113 views

DataSnap Server as Windows Service and Debug

Good Morning, We are just about to start a Multi-Tier project using DataSnap as our Server Application and Delphi Prism. I made a little research and accepted the recomendation of creating the ...
3
votes
4answers
12k views

Are there any log file about Windows Services Status?

I want to figure out when the services was start up and terminated. Are there any kind log file about it?
0
votes
2answers
21 views

choosing between a Windows service and a web app

We have an ASP.NET website where user adds items to database. There are several sites on same server, each with its own database. I need to implement a mechanism to check database for the state of ...
20
votes
4answers
9k views

How to check if a windows service exists and delete in powershell

I am currently writing a deployment script that installs a number of window services. The services names are versioned, so I want to delete the prior windows service version as part of the installs ...
0
votes
4answers
60 views

How to let my application to be running even when Logged off the machine?

I have developed a TCP Server. I want my TCP server to be running even when I log off my machine. So clients can connect to it even when my computer is logged off. I was thinking if I must create a ...
0
votes
1answer
78 views

How can I use CommandLine Arguments that is not recognized by TopShelf?

I want to pass some custom arguments to the console app where I install, start Windows Services via TopShelf. When I use : MyService insall start /fooBar: Test Console application fails: ...
0
votes
1answer
15 views

Not finding any new messages received after connection is made

The scenario is a Windows Service connects to an outlook.com or a gmail.com POP3 account using OpenPOP. It finds existing emails if there are any (i.e. client.getMessageCount() returns a value larger ...
0
votes
2answers
244 views

Create memcached service in windows failed

I'm using Memcached-for-Windows, see: http://blog.elijaa.org/index.php?post/2010/08/25/Memcached-1.4.5-for-Windows&similar I've tried to use: sc create "memcached" binPath="C:/memcached/mem ...
0
votes
1answer
42 views

Multiple running tasks in windows service with WCF?

Sorry If im not going to be specific but this is my first post as a fresh developer. Im presented with task of creating asp.net web app in C# that will be interacting with multiple systems around ...
2
votes
3answers
2k views

Installing windows service fails: service already exists

I'm trying to reinstall a service I've written using C#. The first time this worked. I used installutil to handle the install and the service showed up in the list of services and I could start it. ...
0
votes
0answers
19 views

How to Call Normal Window Service From Android Client?

I have created Window service and I installed in my machine say " Service 1" that has been listed in services.msc. My question is if someone has to call the service how can they call it. I mean, I ...
0
votes
1answer
18 views

Windows service not executing after first run

I have create a windows service in VS 2010. I install it and also run it at the same time and set startup type to Automatic . I see it running fine through EventViewer and is successfully completed. ...
0
votes
1answer
18 views

Window service not returning any error and is stuck

I created a windows service basically its just creates a report and then exports it to pdf and emails. I ran the whole application in debug mode and it works perfectly fine. Now i created an ...
0
votes
2answers
34 views

Automated Uninstall Service via MSI Not Working

I am writing a powershell script to deploy a .NET 4 Windows Service to a 2008 server via a generated MSI. A fresh installation runs fine, but when I rerun and it tries to uninstall it, the script ...
26
votes
5answers
14k views

Installing multiple instances of the same windows service on a server

So we've produced a windows service to feed data to our client application and everything is going great. The client has come up with a fun configuration request that requires two instances of this ...
0
votes
1answer
45 views

After a day or so of running, Windows service starts giving OracleExceptions when trying to perform query

I have a Windows service created in .Net 4.0 that among other things need to do two things to an Oracle database. One is to run a SELECT query to see if a record with a user-given (through a telephony ...
0
votes
1answer
25 views

Monitoring timers in a windows service

I have the following code in my windows service var timeToWait = TimeSpan.FromSeconds(20); var interval = TimeSpan.FromMinutes(5); var t = new Timer((s) => { ...
1
vote
0answers
18 views

windows service acting as a web service

I read that there are two kinds of services : web services : use on the server and offer to the client to use some of its methods. windows services : used to run some background task. Is it ...
14
votes
4answers
40k views

The type initializer for 'MyClass' threw an exception

following is my windows service code,i am getting the "The type initializer for 'CSMessageUtility.CSDetails' threw an exception." exception when i am debugging the code. using System; using ...
12
votes
9answers
10k views

Accessing Environment Variables from Windows Services

I am attempting to write a Windows Service in C#. I need to find the path to a certain file, which is stored in an environment variable. In a regular C# console application, I can achieve that with ...
-5
votes
0answers
27 views

Windows service to create a folder and check it in every 10 minutes for any file then upload it using ftp [closed]

I have a requirement to create an application in .net windows service where we need to create a folder on client desktop and after every 10 minute application will check the folder and if new file ...
0
votes
0answers
7 views

Unable to execute an EXE with php-fastcgi under IIS 6

I added Everyone user to the directory that contains dl.exe and also php-cgi.exe. Execute Permissions are to Scripts and Executables. But I still get the following error: Warning: shell_exec(): ...
0
votes
0answers
5 views

How do you set read/write permissions in a VS2010 windows service installer?

VS2010 spits out an installer for my windows service which works, except read/write permissions are not enabled. Is there any way to have VS2010 configure the installer to give the service read/write ...
12
votes
5answers
5k views

Any way to override .NET Windows Service Name without recompiling?

I have a windows service executable that I know is written in .NET which I need to install under a different service name to avoid a conflict. The install doesn't provide anyway to specify a service ...
0
votes
0answers
33 views

Is it possible to use Javascript in Windows Service project?

I have a requirement where I need to generate Bing map control with push points (which is only doable using JavaScript) in a Windows Service. So my question is: Is it even possible to write ...
2
votes
3answers
40 views

New Version Error C#

I've built a windows service code with Framework Verison 4.0, when I sent my service.exe for instllation at different machine which has version 2.0 installed it gave error: "Exception occurred while ...
0
votes
0answers
22 views

Windows Service not running the service itself

I have a Windows Service project that accesses some files on the disk, checks the md5 and stores the data in some db. Nothing fancy. It also logs some messages to log file (plain text). Then I have ...
0
votes
0answers
8 views

Windows Service starting separate out-of-proc ActiveX exe

I have developed a Windows Service in C# that creates objects and calls methods on a legacy VB6 ActiveX component. At the first creation the out-of-proc exe is launched and everything works out fine. ...
2
votes
3answers
77 views

Create a service or a background application?

Ok, so I know how to write both a service and a background application, I'm looking more for general opinions because this is an odd use-case in the sense that I haven't been able to find examples of ...
0
votes
3answers
728 views

NServiceBus subscription not working

Im trying to setup an NServiceBus PubSub example which is hosted inside a set of windows services. I have configured my publisher and can see it calling my buses publish method. Ive also configured ...
0
votes
0answers
28 views

Start/Stop Window Service from ASP.NET page

Is there a way to start / stop a windows service of a server in a different network (not \\<server name>) from an asp.net page? I tried using ServiceController but it's only work if it's in ...
0
votes
0answers
17 views

Using “runas” to execute acceptance tests from CruiseControl.net

We're developing a web-based intranet app that uses Active Directory to authenticate users. User's don't login to the app. We simply get their AD credentials from the web browser. We've written a ...
0
votes
1answer
18 views

FileSystemWatcher on one server watching folder on another server

I've been reading up on here and other sides about FileSystemWatcher and have still been unsuccessful in finding a solution. Issue: FileSystemWatcher is running on one server(prodserver1) and looking ...
1
vote
2answers
34 views

ActiveReports 7 throws invalid handle exception printing from Windows Service

I have and application that is running as a windows service on Server 2008. When I run it as an application and send a print job, the print job gets processed sucessfully. However, if I send the print ...
9
votes
8answers
6k views

Multiple Windows Services in One exe

I am trying to build several Windows services to do different things. For instance, I need Windows services that will: Send a daily report via email Periodically cleanup some archived info every 30 ...
1
vote
0answers
30 views

ActiveMQ (5.8.0) with Spring Integration JMS failing to stop Windows Service

While running Spring Integration JMS deployed on Tomcat 7.0.26 (running as a Windows Service) communicating to ActiveMQ (5.8.0) , we find that periodically the Tomcat Service fails to stop. Can ...
1
vote
1answer
13 views

How to start rails server like windows service

I've just finished to write a rails app, and now is(unfortunately) time to deply this app on Windows. I'm running: Windows server 2008 Ruby 1.9.3 Rails 3.2.9 Now my web server is Thin, and i want ...
0
votes
1answer
29 views

HttpWebRequest making duplicate request?

I'm running my program as a windows service and I'm trying to send a HTTP request everytime the time elapsed(i've set to 1 minute). What I'm trying to do at the server side is just writing a value ...
0
votes
1answer
33 views

Windows service time out expired

protected override void OnStart(string[] args) { try { t.Enabled = true; t.Interval = 10000; //60 * 24; t.Elapsed += ...
-1
votes
1answer
30 views

powershell to stop windows task and windows service [closed]

I am looking to use powershell to the following but not 100% sure how to do it as I am new to it. I would like to stop a scheduled task, perform an action and then restart the scheduled task again. ...

1 2 3 4 5 89