0
votes
1answer
30 views
How can we find the process ID of a running Windows Service?
I'm looking for a good way to find the process ID of a particular Windows Service.
In particular, I need to find the pid of the default "WebClient" service that ships with Windows …
0
votes
2answers
18 views
GUI and windows service communication
I know since Vista, that C# can't hook a UI form directly to the windows service. This was stated on the Microsoft Site.
My question in this regard is: "What is the best mode of …
0
votes
2answers
12 views
Windows Services Recovery not restarting service.
I configure the recovery for Windows services to restart with a one minute delay after failures. But I have never gotten it to actually restart the service (even with the most bla …
1
vote
7answers
146 views
How do I safely stop a C# .NET thread running in a Windows service?
I am maintaining some code which looks something like this. It's a Windows service which does some work every 30 minutes. The ActualWorkDoneHere method takes about 30 seconds to …
4
votes
5answers
49 views
Challenges and Best Practices for Failing Over Services
Hi everyone,
Does anyone know of any established best practices for running Windows services (in my case, developed in .NET) such that they will (automatically) fail over correctl …
0
votes
1answer
23 views
How to efficiently write code and debug windows service project in visual studio?
How to efficiently write code and debug windows service project in visual studio? Visual Studio gives
Cannot start service from the command
line or a debugger. A Windows Ser …
0
votes
3answers
109 views
Relative path of a given file from a service application in Delphi
I have a problem loading a file, as I'm passing a relative path to the function FileExists(Filename: String) and it's returning false, that is, it does not find the file in the dir …
0
votes
1answer
38 views
Check if a service is running with Win32_Service
Hello, I have a very quick question about Win32_Service
Is
String sState = service["State"].ToString();
if (! sState.Equals("Running"))
Sufficent to moniter if a service is no …
0
votes
4answers
57 views
Writing Windows service in WCF
Hi
I want to write windows service in wcf After searching a lot I only found were tutorials of writing webservice in wcf not windows service.
Can any one please provide a link to …
0
votes
0answers
12 views
WMI Error in Windows Server 2008 (WMI Provider)
Hi,
I've implemented a WMI provider (Window service, Instance, Methods and Properties provider).
It works fine on Windows Server 2003, but when it run on Windows Server 2008 with n …
0
votes
4answers
48 views
.NET windows service getting stopped abruptly
HI Guys,
I have created a windows service which spawns three threads.The first thread wakes up every 15 sec, the second thread wakes up every min. and the third thread once in a da …
1
vote
6answers
122 views
Writing application for both Unix and Windows
I'll write a program for Interactive UNIX (http://en.wikipedia.org/wiki/INTERACTIVE%5FUNIX). But in a year it will be ported to Windows. I'll write it in ANSI C and/or SH-script. W …
2
votes
3answers
54 views
Installing a Windows Service as a user
Hello,
I'm currently in the process of creating a Windows service application which will monitor changes to certain keys made in the HKEY_USERS registry. The way I do this is by c …
2
votes
1answer
25 views
Automated Build and Deploy of Windows Services
How would you implement an automated build and deploy system for Windows services. Things to keep in mind:
The service will have to be stopped on the target machine.
The service …
0
votes
3answers
50 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 t …
