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)

0
votes
1answer
318 views

Install MySQL service in Inno Setup

I would like to install MySQL service after install in Inno Setup. There is already similar question here, but no solution there works for me. If I use sc create like that in the solution, then after ...
0
votes
1answer
43 views

SWF file stops playing on unplugging the charger from laptop

My problem might seem odd.I have created a windows service which when starts,plays a swf file.The swf file does work and everything works just fine.The only problem is,the file closes as soon as I ...
2
votes
1answer
241 views

WCF NamedPipe CommunicationException - “The pipe has been ended. (109, 0x6d).”

I am writing a Windows Service with accompanying "status tool." The service hosts a WCF named pipe endpoint for inter-process communication. Through the named pipe, the status tool can periodically ...
-2
votes
1answer
64 views

Calling my program via a Windows Service [closed]

I have a Console Application that I have written In C# and I have added a windows service to that application, now how would I programmatic call my application's methods via my Windows Service or am I ...
0
votes
2answers
50 views

How to identify the user from windows service? [duplicate]

I have developed a windows service that sends a mail automatically when the Windows User logs in. Now I want to add the User's name in the body of that mail. How can I identify the user, using windows ...
-4
votes
2answers
87 views

A Windows Service should load a form at startup

How can I load a 'login form' in OnStart event of windows Service?! I know windows service is incompatible with UI. but I need to do this without using windows startup.. Is it possible? and how? ...
7
votes
1answer
197 views

What is the best way of automating Windows Service deployment?

I have created a windows service using C# in Visual Studio 2010. I did a lot of research about automating the installation process. Got lots of advice but none did work for me. The windows service i ...
1
vote
1answer
39 views

Upgrading old .Net 1.1 Windows Service to 3.5, do I need to uninstall/new install?

I've upgraded the solution from .Net 1.1 to .Net 3.5 in Visual Studio, and it re-compiles with no errors. The old 1.1 Windows Service is already installed on the Windows Server 2008 R2. Will I need ...
0
votes
1answer
64 views

checking if windows service is already installed before installing it from c# code

i am learning about windows services i installed windows service using a setup project made changes to the code in the windows service now in the constructor method of the project installer i am ...
2
votes
1answer
85 views

Launching an application from Window service in C#

I am trying to launch an application from a Windows service running on LocalSystem account. I am able to launch the application but it asks for UAC to run. Is it possible to launch an application ...
0
votes
1answer
38 views

How to detect an incoming USB device in windows Service on Windows XP machine?

I an trying to write a simple Windows Service that shall detect any incoming USB device and Launch a GUI application. WqlEventQuery query = new WqlEventQuery("SELECT * FROM ...
-2
votes
1answer
157 views

windows service runs batch file properly through coding, but when installing, it doesn't [closed]

Here i am sharing each code file: Sample.bat file: @ECHO OFF SET /a INT1=%1 SET /a INT2=%2 SET /a ANSWER=INT1*INT2 ECHO %ANSWER% PAUSE cmdSample.bat file: sample 2 4 Windows service ...
1
vote
1answer
149 views

Not able to run batch file from Windows Service Application

I am having batch file : sample.bat with following code: @ECHO OFF SET /a INT1=%1 SET /a INT2=%2 SET /a ANSWER=INT1*INT2 ECHO %ANSWER% PAUSE Also created another batch file : cmdSample.bat with ...
0
votes
1answer
19 views

using ms installer to delete previously installed service and install the new version

I am learning about windows services and i successfully installed it using the msi installer now when i make changes to the onstart() method and build the project i also changed the version number in ...
0
votes
0answers
57 views

FileSystemWatcher killng windows service when it detects a created file

I have a filesystemwatcher running as a service. I can install the service and start it however when ever I create a file in the monitored directory the service crashes if I try to do anything in the ...
1
vote
1answer
81 views

How to call MSBuild.ExtensionPack through MSBuild arguments?

Hi i am using MSBuild Extension Pack to install windows service to the remote machine. I was testing this through command prompt and it successfully installed the service. I now want to call this ...
0
votes
1answer
84 views

How to create multiple instance of window service?

I want to run multiple instances of a window service installed on a server without installing window service again. How is this possible?
-1
votes
1answer
49 views

How to deploy an auto-updating WCF windows service?

I have a WCF Windows service that is used locally only. I need to deploy it in multiple sites and I need the option to auto update it - when an update is released, the service has to be able to get ...
0
votes
1answer
75 views

How to install a window service programmatically in vb.net

How can I install my Windows service programmatically? I want to install my Windows service on clicking of a register button & uninstall it on clicking a de-register button.
0
votes
2answers
76 views

How to get all printer name in windows service?

I want to get all printer name installed on computer and network. I used these function in below to get list of all printer. All these func. is working correctly in console and form application and i ...
0
votes
1answer
38 views

what are the differences between the account properties of ServiceProcessInstaller

Hi i am learning to create a windows service i searched a lot and did not get a clear understanding of the Account property in the ServiceProcessInstaller Class can anybody please explain what is the ...
0
votes
0answers
52 views

Can you install a NserviceBus windows service from within a .Net application?

Right now we install our NserviceBus using a .bat file that looks something like this: NServiceBus.Host.exe /install /serviceName:"Cool Service" /displayName:"Cool service Name" /description:"Cool ...
2
votes
0answers
25 views

Windows Service not Retrieving data due to Activator.CreateInstance()

I have an issue in my Windows Service Application, I have a scenario where I need to fetch a file path using a DLL(provided by the Client). For the purpose of faster debugging I have created a Console ...
0
votes
1answer
44 views

When installing Tableau Server getting error

When I am installing Tableau server I am seeing this server. I am the administrator of the system but still I was seeing the message.Please help me in this regard
-1
votes
3answers
124 views

How to deploy windows services using MSBuild?

I have created a windows service project using Visual Studio which needs to be installed on to the remote machine using MSBuild. I have had a look at lots of resources on good ways of deploying ...
0
votes
0answers
43 views

How to check if service exists in services.msc and iff it exists add dependency on that service[conditionally]

I do have my own service named ExchangeOfData. which is dependent on the Sqlexpress services. I do have issue of when I restarts the system, sqlexpress is stopped or on few machines it does not exist ...
0
votes
1answer
48 views

EnumServicesStatus pascal declare

I am calling the EnumServicesStatus function in pascal.But how to declare it. here is a example for OpenSCManager function OpenSCManager(lpMachineName, lpDatabaseName: string; dwDesiredAccess ...
0
votes
1answer
190 views

Issue with deploying WCF Service with entity framework

Currently I am deploying the WCF service with entity framework accessing the sqlite database.The service is hosted under window service. After I deployed it, the service has been created. I can access ...
0
votes
1answer
86 views

Store user settings in WCF service hosted by a Windows service

I've created a WCF/REST service that is hosted by a Windows service. The service has no database behind it, because there is no need for. But I want to save some general settings (list of allowed ...
0
votes
0answers
100 views

starting explorer.exe from Windows Service

I have made a windows service in VB.NET 4.5. I want to check if the explorer.exe process is started or not on the machine through my service and if not, then start the process. I have heard about the ...
2
votes
1answer
222 views

Getting the error “The 'VFPOLEDB.1' provider is not registered on the local machine” even after installing and registering the provider

Alright, so I've got a Windows service that has a FileSystemWatcher that watches an output folder for some Visual FoxPro database files. And it leverages the VFPOLEDB.1 provider to read those files. I ...
0
votes
1answer
129 views

How to change Windows console app C# project into Windows Service using Visual Studio 2010?

I used this tutorial to create C# Windows service using Visual Studio 2010 and its stock console app project, but after I changed everything and tried to install it as such: ...
1
vote
0answers
53 views

Issue with window service

I am currently working on hosting the wcf service in window service. The wcf service provides clients to access the database using entity framework. I got them all working. There are two conditions I ...
0
votes
0answers
60 views

Facebook C# sdk random exception when posting photo

I am using Facebook C#sdk to upload photos to user profiles using a Windows Service as a background job. And I am logging exceptions in almost every place that I can think of and for the most part it ...
0
votes
1answer
51 views

Command line output when running application as Windows service

In a Windows 2008 R2 environment, I have a socket.io chat application that I'm currently starting from command line: node app.js This outputs different information about the app's state on the ...
0
votes
1answer
45 views

ServiceInstaller and “service already exists” 1001 error

I have an application with a project- and serviceinstaller in it. The installation usually works fine except in some cases when installed through PSEXEC remotely. I wonder, where in the code I can ...
1
vote
1answer
64 views

Is there anyway to read the service recovery option for a windows service in C#?

We are developing an application to monitor the services, disk and events of a windows server. We have a requirement to read the service recovery option and store it into the database table. So I ...
0
votes
0answers
46 views

FTP timeout on active connection mode in a WCF service hosted as windows service

I have written a TaskServer WCF service that loads a FTP file sync plugin and executes file synchronization of local and server files in an extra thread by using FTPclient. In the source of FTPclient ...
1
vote
0answers
37 views

Check session state OnStart

When developing a Windows Service in VB.NET you have the ability to track changes in the current session (like Logon, Logoff or ConsoleConnect). The code below gives you an example of this. This ...
0
votes
0answers
24 views

Error: Source already exists

when i try to start a service from service.msc.im getting a error message saying, Error "SOME SERVICES STOP AUTOMATICALLY IF THEY ARE NOT IN USE BY OTHER SERVICES" while trying to start a service. ...
0
votes
2answers
47 views

Can i host multiple different windows services in a single windows servcie?

I have a cluster of legcy windows service. All of this services is installed on serveral servers, but the service may be down for some reasons, such as memmory leak, filesystem exceptions and sql ...
0
votes
0answers
61 views

Calling a windowsservice ExecuteCommand to excute a OnCustomCommand on itself?

ServiceController.ExecuteCommand in C# can be used to send custom command to a windows service. Like here - How to send a custom command to a .Net windows Service from.Net code? ServiceController ...
0
votes
2answers
49 views

Prevent windows service from stopping during debug

I'm developing an extension for the product which in fact is windows service. I'm attaching to the service from Visual Studio but after couple minutes of debugging the service stops working so I need ...
0
votes
1answer
50 views

Windows service setup project doesn't copy referenced dlls

I've just built a windows service and it runs like a dream in debug/release on my dev machine. I've created a setup project following steps in walkthroughs such as this blog post, this msdn ...
0
votes
2answers
134 views

Windows Service calling a web page

I think I'm not understanding something about how asp or windows services works. I'm trying to create scheduled reporting on my asp.net project. I have a windows service running on my local machine ...
0
votes
0answers
59 views

WCF TCP Not able to connect with hosted in Windows Service, works fine in self hosted in console

I've researched everywhere but haven't found a solution. I hope somebody has seen this behavior and able to give me some advice. Here is the situation. I have WCF service self-hosted in console ...
1
vote
2answers
87 views

Consume information from multiple windows services

*HOW TO CONSUME INFORMATION FROM MULTIPLE WINDOWS SERVICE * I have a central Administrator machine and 40 other acts like clients , and what i need to do : 1- install a windows service in each ...
0
votes
1answer
87 views

Service on local computer started then stopped error

I have a windows service. It was working fine until I added code for it to begin logging. Now when I try to start the service I receive the following error: The GBBService service on local ...
0
votes
0answers
101 views

handle multiple windows service client c#.net [closed]

It's easy really to think about it but i can't find a solution what i need is simple : 1- Install a windows service in a X client machine 2- Get the informations from all the client and put ...
0
votes
4answers
181 views

Start browser from Windows service

I am a little new to the Microsoft world. I have read this answer and many other links and I'm aware that after Vista, it is not possible for windows service to interact with desktop. However, I ...

1 2 3 4 5 87