1
vote
3answers
30 views

Running Windows Service Application without installing it

Whem I'm writing a Windows Service and just hit F5 I get the error message that I have to install it using installutil.exe and then run it. In practice this means everytime I change a line of code: ...
-1
votes
1answer
17 views

Read User Settings from a referenced project at runtime of a Windows Service?

I made a Windows Form GUI "config" app, which simply allows the user to change/save properties (like a decimal and a few strings). I have a Windows service which uses a timer to run a process every so ...
3
votes
3answers
51 views

What is the proper way to have a Windows service stop and start gracefully when suspending/resuming a PC?

I need to stop our Windows service when a PC is powered down into Suspend mode and restart it when the PC is resumed again. What is the proper way to do this?
0
votes
2answers
27 views

What is preferred .NET 4.5 C# design pattern for windows service which polls DB table record and processes it based on type?

The requirement is to re-write the current windows service app (.net 2.0 with c# to .net 4.5 with design pattern) which is used to poll a db table for pending record, if any pending record, take it ...
-2
votes
0answers
31 views

Login to ASP .NET MVC website under HTTPS using Windows Service

I have some administrative methods under ASP .NET MVC website that is under https. So it looks like https://mysite.com/cms and there are some actions like CheckUsers My question is Can we ...
0
votes
1answer
47 views
+50

Custom Command WIndows Services on HIGH Priority

I have an Work Tracker WPF application which deployed in Windows Server 2008 and this Tracker application is communicating with (Tracker)windows service VIA WCF Service. User can create any work ...
0
votes
1answer
20 views

Windows Service Deployment on Server with many clients

I have developed a Windows service in C# which has a functionality to send emails on a scheduled basis to the users. Now this service is to be deployed for a large number of clients (say, 50) who ...
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
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
65 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 ...
-1
votes
3answers
159 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
1answer
70 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
1answer
33 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 ...
2
votes
3answers
56 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
47 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
66 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"); ...
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
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
143 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
137 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
79 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?
0
votes
1answer
73 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
0answers
95 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 ...
0
votes
2answers
45 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
1answer
46 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
0answers
96 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
162 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 ...
0
votes
1answer
53 views

Socket Server in Windows Service

I have service application which deploys several windows services static void Main() { DebugManager manager = new DebugManager(); ServiceBase[] ServicesToRun; ...
0
votes
1answer
118 views

Console.WriteLine sends output to debug in vs.net, but when run from console, I see nothing

I have a C# windows service. In that service code, I define Main() and capture various arguments. If the arg is "install" I call code to install the service. Note that when the arg is install, I am ...
0
votes
1answer
32 views

Alternatives to a windows service for polling application

I have a C# program that needs to query a database table and make a call to a webservice on a polling interval. I know I could wrap this up as a windows service. However I am wondering if there are ...
-3
votes
1answer
140 views

Developing a windows service to communicate between a SQL server database and web service

We have developed an iPhone application which communicates with SQL server database via asp.net hosted on a public server. We have completed all the development and we need to test this with live ...
-3
votes
1answer
91 views

How to call a c# method after certain period

I have an upload API implemented in Windows Service to upload some files on server. These files come to server from network system anytime. This upload API has to work after certain intervals and ...
0
votes
1answer
51 views

Get the output log from wrapper service (OpenVPN)?

I'm thinking of writing a simple custom .NET OpenVPN client. I was wondering in what different ways would it be possible to get and display the output log of the underlying openvpn executable? ...
1
vote
0answers
55 views

timeout for SCM to kill a service that won't stop

I'm trying to figure out what happens if the SCM sends a stop request to a service but the service does not stop within a specific interval. I've seen passing references in blogs and forums to a 30 ...
1
vote
1answer
63 views

handling stop in a .net windows service

I'm sure this is a really common case but I can't find much on MSDN about it. let's say I have a service which is performing transactions and when I get a stop request I want to make sure I have ...
-1
votes
2answers
36 views

MS Windows Service and https [closed]

I have web site that has installed SSL so it is working under HTTPS with FirstData.com Now I have to create MS Windows Service that should do the same things like website does under SSL. So my ...
2
votes
2answers
61 views

Can I use the first OR last 16 characters of a Guid and it still be unique?

Objective Generate a unique 16-character key, to use as a batch name, that doesn't require any type of storage (e.g. a unique counter). Background I have a Windows service that runs every 30 ...
0
votes
1answer
23 views

Setting Windows Serviceat a particular time in .net

Can We Set a windows Service at a particular time in a day? Then make the Service calls after every scheduled time. Also can I set Windows Service at a particular time on particular day in a week?
0
votes
1answer
48 views

WindowsService and NamedPipes: UnauthorizedAccessException

When I try to access a NamedPipeServer (Running as a WindowsService) from a WPF-Testapp i always get an UnauthorizedAccessException. Server: class PipeConnector { private volatile bool ...
0
votes
3answers
36 views

Exception when Widows Service(WCF) is starting on SOME computers?

I have a WCF service using net.tcp communication to a fat winforms client. The installation of the windows service is made with a install.bat that looks like this : @ECHO OFF REM The following ...
0
votes
0answers
89 views

Not able to access multiple WCF Services under a single Windows Service

i have build WCF application which have 2 Services. I want access them under Single Windows service. I am able to access only one service out of 2. My app.config look like: <?xml version="1.0" ...
0
votes
2answers
83 views

Window Service when folder copying is finished

I have a server location path like \\10.100.100.10000\Builds. Whenever somebody fires a force build in our server in Visual Studio, a new build folder, like 2013.1.3.1, gets created and new files are ...
0
votes
1answer
88 views

how to restart window service

i want to restart window service named "Spooler" i did following code , but no luck, Any body has any idea about what is going on wrong? code is using System.ServiceProcess; ServiceController ...
1
vote
1answer
143 views

IIS AppFabric vs classic Windows Services [closed]

We have an Enterprise CMS with a lot of services all of different kinds, some of them are windows services. I know about the IIS AppFabric extensions and the idea of having all the services running in ...
2
votes
2answers
124 views

windows service strange behavior

I implemented windows service with eventLog and FileSystemWatcher that looks for changes in specific directory and writes messages into MyLog. strange thing 1: I install it via installUtil.exe ...
1
vote
2answers
132 views

System.Threading.Timer callback not being hit

I have a windows service which, among other things, needs to do some database maintenance every 24 hours. (SQL express, so can't schedule it inside the database) For this I have created a Timer with ...
0
votes
2answers
98 views

.net3.5 System.Timers.Timer.Elapsed Twice

I am coding for a windows service project, i use a System.Timers.Timer for some work. I set the interval 2000 milliseconds. But i found that the timer will raise the Elapsed event 1 time in the ...
0
votes
2answers
436 views

Unable to install windows service with the help of InstallUtil tool

I use VS 2012 and since the setup projects have been removed from it I have to use InstallUtil.exe. I don't have projectInstaller class in my windows service app. I run in command prompt: ...
0
votes
0answers
61 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
76 views

How TopShelf can capture arguments like 'install' or 'start' which is ignored by my Main method?

I was checking the TopShelf as a beginner. I see that when you compile your console app you can install your service as: MySampleWindowsService.exe install and start: MySampleWindowsService.exe ...

1 2 3 4 5 20