0
votes
1answer
90 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 ...
2
votes
1answer
115 views

Logging Windows Service

I have the following code for logging my windows service which I found through research online. its done inside of my service class right before it is being initialized like below. public ...
-1
votes
2answers
679 views

EventLog write permissions

My question is related to write permissions to the Windows Event Log. I have looked around several posts concering this, and have found some ways to solve my problem, but none of these are acceptable ...
0
votes
1answer
415 views

using event log in windows service

recently i finished developing a windows service .it is working on my PC, easy start and logging but unfortunately it doesn't setup on other computers very easy due to the fact that i use event log , ...
2
votes
1answer
258 views

C# Event Viewer - Log to Subfolder?

I've searched and searched and can't find the answer. We have a custom service that runs and logs into the Event Viewer. In Windows 7, there's a folder called "Applications and Services Logs". How ...
1
vote
2answers
203 views

Windows Service: Specified eventSource exists already

I'm writing a Windows Service in C# (.NET 4). Here is the code for the installer: [RunInstaller(true)] public partial class JobManagerInstaller : Installer { public JobManagerInstaller() { ...
0
votes
1answer
2k views

How to create a custom event log using C#

I created a Windows service. I create an event log. public Service1() { InitializeComponent(); this.ServiceName = ConfigurationManager.AppSettings.Get("ServiceName"); string ...
0
votes
1answer
395 views

Writing to Event Log: don't see events in Event Log Viewer but do see them from under Visual Studio.Net

I am creating a Windows Service in VS.NET 2010 / C# that uses the event log component for logging. I created event source, and the service works under the Local System account so no security ...
2
votes
1answer
821 views

Windows Service output not showing up in Event Log

I am trying to follow this walkthrough. I'm using Visual Studio 2010 Premium. The only events I see in Server Explorer or in Event Viewer are "Service started successfully." and "Service stopped ...
3
votes
2answers
2k views

Why does my Event Log source keep getting put under “Application” in the registry instead of <log>?

I'm trying to create a windows service and I need it to be able to write to the event logs. I've added an EventLog component to my Service project, and set the Log property to be ccs_wscln_log and ...
2
votes
2answers
508 views

Capturing windows event with java windows services

I want to capture lock/unlock/start/shutdown/log off and log on events through a windows service and then I want to fire a function for each event so that I can capture the time when Event occured. ...
0
votes
1answer
327 views

Windows Service exposing WCF: most EventLog entries not appearing in the event-log?

I have some very odd situation at a client that wants me to maintain some of their software: upon start/stop, the EventLog entries of a Windows Service are correctly appearing. But during incoming ...
0
votes
1answer
75 views

What privileges do I need?

I have a Windows service that isn't writing to the Application Event log under UserAccount. When the service is set to use AdminAccount, the Security log reports the following attributes: Under ...
2
votes
1answer
713 views

How does the window service write message to event log correctly?

I wrote a windows service use the Event Log for logging. It has wrote message to Event Log successfully but the message description has been appended the following text: The description for Event ...
2
votes
2answers
6k views

Error while writing to event log, prevents windows service from starting?

I am using the following code to create a custom event log in my windows service application: public ServiceConstructor() { InitializeComponent(); if (!EventLog.SourceExists("WinService")) { ...
2
votes
8answers
3k views

C#: GUI to display realtime messages from Windows Service

I've written a C# windows service which can write messages to a custom EventLog or to any number of files. These messages are all marked with some priority (so, for example, only ERRORs and WARNINGs ...
1
vote
1answer
566 views

WIndow Services Event ID

I'm doing a C# project window service. 1st time doing it. I have managed to installed and checked that it is working. 1 thing that puzzle me is that when I see the event log, I notice all or almost ...
1
vote
1answer
1k views

Correctly use <system.diagnostics> settings in application configuration file

I recently created a Windows service. One thing that it faithfully does is log any errors to the Application log. I have the following code that does this: Dim appLog = New ...
0
votes
1answer
286 views

A connection between a PDDM and the agent was closed. [TaskManager.cpp:168]

I was trying to find a solution for issue,,that is one Service repeatadly going on restart which is making the issue.When i checked the event log i can see one waring before the restart occurs ...
1
vote
4answers
989 views

Windows Service: Where to write log messages (EventLog, File or DB Table) / Access from Web

We have a windows service (in .NET) that will write a fair amount of messages to a log. This log is of interest not only to server administrators but also to normal clients who use a web page to ...
2
votes
1answer
530 views

Windows service always writes to custom log and application log

I am using a custom EventLog for my Windows service. The service creates the event source after installtion. I don't have any problems. However, I have setup my service so that I can run it from ...
1
vote
1answer
209 views

How to pull a range of failed services from a remote server after a reboot

Caveat: Without spiking the cpu while a Get-WmiObject call parses the whole event log to match my specified filter. Situation: I am working on a script that remotely runs some checks, then reboots a ...
0
votes
1answer
283 views

Writing exceptions in multihreaded windows service to event log

I have a multithreaded windows service that will unpredictably stop running once every 24 hours or so. I am writing to the event log and that's going through just fine, but whenever the service ...
2
votes
2answers
3k views

How to write to a custom event log?

Hi I'm trying to get my .Net Windows Service to right to a custom event log. I'm using EventLogInstaller to create the event log and source when the application is installed. I read here that it ...
6
votes
2answers
5k views

Does one need to manually create a Windows event log source when installing a Windows service

I have developed a Windows service in C#. I have created a installer with Visual Studio 2008, which installs the Windows service. Everything is good so far. I want to make sure that the event source ...
1
vote
5answers
3k views

C# Service Timeout (30000 milliseconds) waiting for a transaction response in event viewer

I have a C# service. It is a memory and CPU pig. It will run all night, moving data in the database. Around 7 am it post to the event viewer, repeatedly, Timeout (30000 milliseconds) waiting ...
2
votes
2answers
3k views

Why would this Event Log's EntryWritten event never fire?

I have the following code in both a C# console app and a C# windows service. It works in the console app. It picks up the specified event, and calls MatchEvent() correctly. The same code in a C# ...
2
votes
5answers
579 views

How do I conditionally suppress application exceptions written to the event log?

I am working on a windows service that polls for a connection to a network enabled devices every 15 seconds. If the service is not able to connect to a device, it throws an exception and tries again ...
20
votes
11answers
14k views

What is the most reliable way to create a custom event log and event source during the installation of a .Net Service

I am having difficulty reliably creating / removing event sources during the installation of my .Net Windows Service. Here is the code from my ProjectInstaller class: // Create Process Installer ...