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)

-1
votes
0answers
25 views

Selective windows service deployment visual studio

I have written three windows services and will like the user to select which one (or more) of them he/she will like to install when setup is running. I have added a new dialog (checkboxes) to my ...
0
votes
1answer
85 views

Passing Connection String and Timer Interval to Windows Service by GUI

i want to write a windows service by c# that get data from t1 table in database1 and insert this data into another table in another database (for example t2 in database2). i am using this tutorial ...
0
votes
3answers
244 views

How can I add window Service in C#/ install it and Run exe(My Job.exe) through this Window Service?

Actually I want to run exe file(My Job.exe) Through window Service in C# but window service should be started automatically when I start the Computer? I have already added Window Service (MyService) ...
-3
votes
2answers
83 views

C# how to increment variable in constructor - windows service [closed]

I have a Windows service and I want to change the URL whenever the constructor is called. I am forming the URL in the constructor by concatenating a variable to it and the variable is being ...
1
vote
0answers
101 views

Windows Service start then stops immediately

I've created a windows service that creates a Form in which a tool strip icon is created to manage a socket. I'm able to install through an installer created in Visual Studio, but when I go to ...
0
votes
0answers
36 views

Quartz ScheduleJob Memory Overload?

I use quartz.dll on windows service for running process every min. My service use high memory and this memory size increase day by day. How can i get under control my using memory as normally. This ...
0
votes
1answer
114 views

Windows Service will not start as Local User

EDIT 2: I now believe this is an issue with the machine I'm attempting to run the service on. I tried moving the service to a different machine that is setup similarly and the service was able to ...
-2
votes
2answers
97 views

Windows Service not Auto Starting on reboot [closed]

I have done some Researching and implemented some additions from the Questions that I found here on StackOverFlow. but I am still having issues with the service not auto-starting here are some of the ...
0
votes
0answers
15 views

Windows service to reboot machine

I have a windows service that is supposed to reboot the machine if the system is locked or if the system is logged out. The service runs fine when the system is locked, but does not want to reboot ...
1
vote
0answers
50 views

Windows Installer (MSI 5.0) fails with ERROR 1939 during “MsiConfigureServices” action

When trying to install a setup package using the new MSI 5.0 features of Windows Service Configuration (using Tables: MsiServiceConfig / MsiServiceConfigFailureActions) the service config fails and ...
0
votes
0answers
47 views

How to resolve Error during execution of ssis package (Integration b/w sybase and sql server) in a windows services

Sybase.Data.AseClient.AseException: Login failed. at Sybase.Data.AseClient1.AseConnection.Open() at Sybase.Data.AseClient.AseConnection.Open() at ...
2
votes
0answers
40 views

Make windows service REALLY stop

A WCF service is hosted in a windows service. For smoother development, the service is stopped by net stop [Service] in a pre-build task and then unistalled, installed and started in a post-build ...
0
votes
2answers
67 views

cosume a WCF windows service from another PC

I have created a WCF service and hosted it in a windows service. Testing this service with visual studio works fine and I can consume it. Now I have installed the service on a PC (called PC1) and ...
1
vote
1answer
73 views

NLog does not write to a target file with filename containig dots

When starting my windows service with "NT AUTHORITY\NETWORK SERVICE" credentials I experience a strange issue with NLog: it simple does not log anything to the file target if the filename contains ...
0
votes
2answers
112 views

Accessing a app.config file property in another app.config file

I have a WCF class library which implements a Windows Service business logic.In app.config file i defined a property called "debug mode" for debugging purposes. Then i have created separate Windows ...
0
votes
3answers
134 views

C#, Deploying windows tasks and services after teamcity build

We have a solution which consists of several projects. Some of the projects are windows tasks, some are windows services and some are mvc-websites which are running on a remote server. On this server ...
0
votes
2answers
57 views

Building a database table watcher

I need the ability to watch a table for changes and perform some actions when new records are added. Basically what I'm trying to do is: Watch a table for new records. When a new record has been ...
0
votes
1answer
78 views

Installing and Running WCF Service inside a Windows Service

I am not a C# or .NET expert. However, I must use it... I am running InstallUtil.exe MyService.exe to install a Windows Service that is essentially running a WCF service. I have defined the WFC ...
0
votes
2answers
43 views

Stop/cancel active file processing in C#

I have an Windows service.It uses Filewatcher API to watch for any new files and start processing the file. Suppose If i want to stop the file processing during runtime (Note I want to stop the ...
0
votes
3answers
116 views

Monitoring app in c#

I'm making a console app in c# for monitoring use in company pcs, the app works great, but my problem is that I want to make that if worker close it, i want to either disallow to close it (although ...
0
votes
0answers
17 views

The Setup or Installation hangs out when I want to show FolderBrowserDialog from a post installation event of windows service installation

I've added a Windows Service installer project as Custom/Primary Output in my SetUp project. But I see the installation hangs if I add the FolderBrowserDialog in post installation event. Following is ...
0
votes
0answers
61 views

How do you deploy a windows service on a web server to be called from an MVC Application?

I built a WCF service that runs in a windows service. I have the service working properly on my local machine. I was able to install it and start it through the Services utility. I have a MVC.NET ...
0
votes
1answer
47 views

COM exception 0x80040154 when hosting WCF service in Windows Service or IIS

I have a WCF service (C#), which I can build and run in Visual Studio 2010 (through Cassini Development Server). I connect a console client app to that service and all works great. The service ...
0
votes
1answer
86 views

Advice on layered architecture (Win Forms + WinService; WCF; LINQ to SQL)

I'll try to explain as briefly as possible: C#.Windows application for categories and descriptions of files. Windows Forms - for the user A library I want to be saved for future usage - I got nice ...
0
votes
1answer
61 views

ticket system on lan. Use webservice, windows service or database polling for communication?

Ok I have been given a task to create like ticket system in the factory I'm working in where operators will generate like a ticket which is stored in a database and also sent to an Engineer to act ...
0
votes
0answers
151 views

Send 3 parameter from my program to Kerio VPN client (another application)

I use "process class" in my program to call Kerio Vpn Client(another application): System.Diagnostics.Process Kerio = new System.Diagnostics.Process(); Kerio.StartInfo.FileName = @"C:\\kvpncgui.exe"; ...
3
votes
2answers
120 views

Windows Service + Windows Forms application. One database. Advice on concurrency

I have SQL Server database with information for files - I'm talking about custom properties. These are categories and description for each file. The Windows Forms application is for the user. But I ...
0
votes
1answer
34 views

Windows Service cannot locate Data Provider

I have a windows service which uses the Entity Framework in combination with ODAC. The service simply polls a table within a database to check for records ready for processing. The service works as ...
0
votes
0answers
70 views

Request forms based authentication protected url from windows service on same machine

I have an MVC3 website using forms authentication. On the same server is a windows service. Both share the same database (which includes the standard asp.net membership tables) and they also share ...
3
votes
2answers
76 views

How do I kill a particular chrome tab/process

I am writing a windows service that I would like to run as a scheduled task. On Start I want it to read in the chrome processes and kill any that have a particular url.. I can get the processes ...
0
votes
2answers
113 views

Unable to connect to self-hosted WCF service

I am trying to build a fairly basic WCF SOAP web service self-hosted as a Windows service. The Windows service itself is up and running on my machine -- I just can't access it locally via Visual ...
0
votes
0answers
55 views

ManagedInstallerClass.InstallHelper Fails

I was able to install a Windows Service Application by a command line as such C:\Windows\Microsoft.NET\Framework\v4.0.30319\installutil %1 But I wanted to do this in code, I googled the problem and ...
1
vote
0answers
41 views

Why is system error 7030 logged when my Windows service is installed?

Each time my Windows service (developed in C#, Visual Studio 2010) is installed on a system running Windows 7 or Windows Server 2008 R2, the system error 7030 is logged. The service is not configured ...
2
votes
3answers
61 views

How to run a task when a windows service starts?

I have a windows service and I've written the code to run the task within the OnStart() event: protected override void OnStart(string[] args) { this.DoTask(); } private ...
2
votes
1answer
135 views

Delphi and Windows Logon Events [duplicate]

I want to know how to receive windows logon and logoff events inside a delphi windows service. The service itself is already built, now I want to show a systray icon that opens a settings/logs window. ...
0
votes
1answer
55 views

Security Exception calling Reporting Services from a Windows Service

I am trying to call the web service for SQL Server Reporting Services from a Windows Service. I can successfully make the call from an Asp.Net MVC website, but when I try to use exactly the same code ...
0
votes
1answer
39 views

MSMQ, Windows Service and Server Restarts

I am working with a legacy Windows Service that reads messages from a private MSMQ queue processes them (does some database work, sends some emails) and then waits for the next message (PeekCompleted) ...
1
vote
1answer
103 views

VB.NET Windows Service Main Code

I am trying to learn how a Windows Service works using vb.net and I have no clue where to put my main code. what I mean by main code is the code that needs to be run every couple of seconds. So far, I ...
2
votes
0answers
52 views

Accessing shared memory from WCF app running under VS2010 and IIS7 Express

I'm developing a WCF app that needs to communicate with a custom Windows service through shared memory. My development environment is Windows 7 Professional with IIS7, IIS7 Express and Visual Studio ...
1
vote
2answers
84 views

What is the proper way for a Windows service to fail during its startup

I need my service to check for existence and structure of certain files during its startup and exit/fail/stop if some conditions haven't met. I read this thread: What is the proper way for a Windows ...
0
votes
0answers
10 views

Windows Service - installation folder

I am working at a windows service. In my code I need to refer to some files which are on my disk. How can I manage to take the folders in the windows service installation folder?
0
votes
1answer
36 views

How do I install a Windows Service Application

I am having a problem installing a Windows Service application on my computer. If I am successful I expect to see my service listed under Computer Management – Services and Application – Services. I ...
2
votes
1answer
49 views

Not sure where to catch exception, validate, and message 'file is still processing'

Using C# built a Windows service to process .tif files coming in to server. The service works fine but throws an exception then continues to process the file as desired. Problem is I am getting this ...
0
votes
1answer
79 views

Local Http server on windows service

I use this code to write Windows Service that work as local http request server. public void StartMe() { System.Net.IPAddress localAddr = System.Net.IPAddress.Parse("127.0.0.1"); ...
0
votes
1answer
71 views

Windows service of OpenPop exit from GetMessage code, same code OK win app

We are implementing the code of downloading the attachment of Gmail A.C using openpop3 namespace. In this code we are checking the attachment size if attachment size is greater than specify value ...
0
votes
1answer
39 views

Windows Service Exception

I have a windows service. And the below function is called during the service is started. static public void SaveXpsPageToJpeg(string xpsFileName, int[] pages) { using (XpsDocument xpsDoc ...
0
votes
1answer
77 views

Strange behaviour of app when running as windows service

I'v created C# project with processing core ported from C++ - core simply does the job - gets simple data, processes it and returns some result as again simple data. This projects works OK when ...
1
vote
0answers
62 views

Installer for Java + Tomcat + PostgreSQL [closed]

I need to create a Windows-only installer that is able to do the following: Prompt user to confirm EULA. If he refuses - do not proceed. Install JDK (I am not sure JRE is good for Tomcat). Install ...
0
votes
1answer
63 views

Windows Service and cache

I'm currently developing a windows service in .net 4. It connects to a WS which send back the info I need. I use a timer: every x seconds, the service asks the webservice the info. But to avoid ...
0
votes
0answers
85 views

Python 3 - Windows service “Error 1053 : the service did not respond to the start or control request in a timely fashion”

I know there are a lot of questions about this "1053 error" but I tried a lot of solutions provided in this forum and none worked (I always get the same problem). I'm trying to make a Python ...

1 2 3 4 5 87