Windows services are background service processes run by the Service Control Manager on Windows NT based operating systems, similar to daemons or UNIX services.
0
votes
2answers
81 views
can't start the windows service after installing it by javaservice.exe
i am trying to run a .jar file as windows service using the JavaService.exe.
first probleme i had, is that i can't install services without running cmd console as administrator,
the first problem is ...
1
vote
0answers
12 views
Running Redmon with a Service
I am trying to use Redmon 1.7 on my windows XP SP2 desktop machine. I process the data provided by Redmon to MyProgram.exe and then write it out to stdout which Redmon sends to printer port.
But ...
0
votes
1answer
32 views
Chatbot (irc) as WCF service?
I want to make a IRC bot and got most of the code already, the only thing I don t know yet is or it is possible that I can host it in a WCF service. The problem I think is that it will be garbage ...
0
votes
1answer
28 views
What is the best way to keep a ATL service running
I have created a ATL service and while testing I simply kept it running by leaving a while loop that ran forever (see code below)
HRESULT Run(_In_ int nShowCmd = SW_HIDE)
{
m_running = true;
...
0
votes
2answers
58 views
Database monitoring application's architecture
I've been given a task to develop an application for monitoring/backuping databases on our servers.
the application should do this things
backup and copy the backup at given time to a given ...
0
votes
0answers
32 views
Windows Service not installing through vs2008 setup and deployment
I have created a windows service in vs2008 that installs and monitors console application - c++.
When i try to install the service manually through command prompt by giving command as servicename.exe ...
0
votes
1answer
30 views
Window Service Cannot load Oracle.DataAccess.dll
I have a Window service which uses "Oracle.DataAccess.dll" (file version 2.112.0) to connect to the Oracle DB. When I deployed this service on to the server, I get the following error "Could not load ...
0
votes
1answer
30 views
on my Windows Service, I am recieving an error proccesed out System.IO.FileNotFoundException: Could not load file or assembly
This service works fine when testing out in Visual Studio locally. But when its time to run it on the server I get the error proccesed out System.IO.FileNotFoundException: Could not load file or ...
0
votes
1answer
76 views
Pass parameters from ASPX page to Windows Service
I'm really not sure how this can be done. I want to pass some parameters from my aspx page to my windows service. Could you share me your ideas on this because I've been searching over the internet ...
0
votes
1answer
36 views
What is the difference between deleting & uninstalling in the context of a Windows Service?
Please help me understand the difference between deleting a windows service with the command "sc delete " and uninstalling a windows service with the command "installutil /u ".
After exploring a ...
0
votes
1answer
34 views
How to get to the “Properties” dialogue for the Primary Output of a Windows Service in InstallShield LE / VS 2012?
I'm trying to set up an InstallShield LE installer for a Windows Service. I'm using VS 2012 Premium and InstallShield LE. I'm looking at this SO question ...
How do i create an InstallShield LE ...
0
votes
0answers
67 views
Login to windows 7 using fingerprint scanner
For my 3rd year project I have to change Windows 7 username and password to authenticate the user.I need to customize this feature.
I want windows 7 to authenticate user, using his fingerprint.For ...
0
votes
0answers
39 views
COM port open issue in asp.net window service
I have created one window service in c#.net.
Which receives data from serial communication port.
It is working fine when first time I open the communication port.
But while I stop my application and ...
0
votes
1answer
65 views
How To Pause and Continue Windows Service By C#
i write a windows service by c# 4 and override some methods for it, like OnStart() and OnStop() and OnPause() and OnContinue() and OnShutdown().
i can start or stop this windows service, but i can ...
1
vote
1answer
39 views
Stopping and uninstalling a different service when user uninstalls
Is there anyway to check to see if a service is installed, and if so, stop it and uninstall it when my application is being uninstalled using WiX 3.7? I don't want WiX to install the service though - ...
0
votes
2answers
106 views
Can't build my service : Unable to copy file because it is being used by another process
I build a windows service in c# .net. I added Pre-Build and Post-Build event to automatically deploy my service on the build. But sometime I got this error :
Unable to copy file ...
0
votes
1answer
38 views
Windows Service not launching as local session
Am working on Creating windows service and launching an exe application through this,
from this link i have created a windows service Windows Service
But when i create a setup and deployment and ...
0
votes
1answer
42 views
Hosting a WCF service in a Windows service
Good day
I want to host a WCF service in a Windows service and as such I am following the tutorial: http://msdn.microsoft.com/en-us/library/ff649818.aspx
During "Step 8: Add a WCF Service Reference ...
-2
votes
4answers
101 views
Can my use of System.Threading.Timer be more efficient
I´m looking for some advice about making my code more efficient. What I would like to do is to have a System.Threading.Timer that runs some job every hour or so, the job is not going to be very heavy ...
0
votes
1answer
49 views
Error: Tomcat 7 Configuration as Windows Service via tomcat7.exe
I am attempting to run tomcat as a service. I am able to run it succesfully when I specify just a startpath or just jvmoptions. However, if I have both I am receiving the following error:
...
1
vote
0answers
81 views
Install Windows Service and Console Application using a single setup and deployment in c++
I have created a console application that works as background app in c++. Am trying to run this application through windows service to start automatically if the app crashed.
What i cant able to do ...
0
votes
1answer
75 views
External component has thrown an exception. C# Windows Service
I have a windows service in C#. After running 1-2 days(not specific), the service stops ( it actually does not stop, but it is not processing anything. Service status is still "Started", I need to ...
0
votes
0answers
68 views
Starting a windows service using a scheduled task in vb.net
Hi guys i have this one screen in my application that will make the user choose whether he wants to run the windows service of my app daily or weekly. now all i have so far is starting and stopping ...
-2
votes
1answer
61 views
C# - Remote ping from another server [closed]
I have a scenario with 3 servers: A, B and C. The server A contains a C# Windows Service that regularly pings servers B and C. The problem is that server A doesn't reach server C (firewall issues). ...
0
votes
1answer
138 views
EIntfCastError 'Interface not supported' when run as a TServiceApplication
I'm having problems using a COM-object when I run my application as a Windoes Service, i.e. TServiceApplication. The exception EIntfCastError 'Interface not supported' is raised.
If I run the ...
0
votes
1answer
33 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 ...
1
vote
1answer
83 views
Failed to install and start windows services in wix installer
I am creating an MSI package for installing and starting windows services using WiX v3.8. The code as following:
<Component Id="INSTALLAPSSERVICE" Guid="991D5F82-0E77-4FE3-B1D8-4C941B84C7CD" ...
4
votes
1answer
50 views
Is Windows Service an ideal replacement of a VB 6 exe deployed as a scheduled task?
There is an existing VB 6 exe which is set as a scheduled task (running every 20 minutes) on a Windows server. The client now wants it to replace with a .NET component.
Is writing a Windows Service ...
1
vote
2answers
35 views
setting Windows Service start from settings file c#
I have a windows service that I want to be able to run at a time specified in my settings file.
This is my first time trying to use a Windows service. how can I schedule a job based on this value ...
0
votes
1answer
52 views
Suggestion for capturing user login/logoff, lock/unlock activities
My requirement is to capture user login/logoff, lock/unlock activities with timestamps on Win xp and hp thin client (XP embedded) machines. Currently, I am doing this with windows service which ...
0
votes
1answer
60 views
How should I protect sensitive passwords in my c# web apps/services?
I'm writing a service that allows users on my corporate domain to perform limited active directory operations. These users don't have permissions to AD themselves but the site authenticates as a ...
-1
votes
0answers
27 views
Some questions should be solved that maked by wix v3.8? [closed]
A msi or exe that producted by wix when makes a upgrade,I want to preserve a configuration file and stop a windows services but not to be removed. What shoud I do? Thanks!
-1
votes
3answers
165 views
Windows service OnStop issue
I have a Windows service which I put together from a number of blogs and forums, mainly questions I've asked and had answered here. The service works fine. The only problem is when I stop the service; ...
0
votes
0answers
41 views
Unable to re-install the windows service
I have installed c# windows service using InstallUtill.exe command.Because of some error, service got disabled.
So I tried to enable the service changing its Start up type to "Automatic"using ...
-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
84 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
221 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
80 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
90 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
35 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
97 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
84 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
14 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
46 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
40 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
39 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
65 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
70 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
105 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
124 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 ...

