Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6815385
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T20:48:02+00:00 2026-05-26T20:48:02+00:00

I have created a Windows service program and I want my error to strictly

  • 0

I have created a Windows service program and I want my error to strictly be written to the Windows eventLog. So I followed these steps from code project article:

http://www.codeproject.com/KB/dotnet/simplewindowsservice.aspx

But I don’t see any of the custom log messages I wrote in the event logs created in the event viewer window when I start or stop the service.
Also how do I specify whether the message was due to an error or is just info?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T20:48:02+00:00Added an answer on May 26, 2026 at 8:48 pm

    First, MSDN is your friend. Make sure you check out the link, as there are some potential gotchas worth knowing.

    Essentially, you create an EventLog object:

    this.ServiceName = "MyService";
    this.EventLog = new System.Diagnostics.EventLog();
    this.EventLog.Source = this.ServiceName;
    this.EventLog.Log = "Application";
    

    You also need to create a source, if the above source doesn’t exist:

    ((ISupportInitialize)(this.EventLog)).BeginInit();
    if (!EventLog.SourceExists(this.EventLog.Source))
    {
        EventLog.CreateEventSource(this.EventLog.Source, this.EventLog.Log);
    }
    ((ISupportInitialize)(this.EventLog)).EndInit();
    

    and then simply use it:

    this.EventLog.WriteEntry("My Eventlog message.", EventLogEntryType.Information);
    

    it’s actually pretty simple.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have created a Windows Service in VB.net for building xML from a database.
I have a Java program and I need to create a Windows Service from
I have just written a program to run as a Windows Service Application, GasMeterMonitoring;
I have created a C# Windows service but it fails to start. I get
I have created a simple windows service that periodically checks a remote database via
We have created a WCF service hosted in a windows service that handles Authentication
I have created an installation package using Wix which installs a Windows service on
Currently, I have a project with a Windows Service. I also created another Setup
I have written a Windows service that spawns a separate process. This process creates
I have started prgramming a windows service. I have added a notify icon from

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.