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 6089483
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T12:06:18+00:00 2026-05-23T12:06:18+00:00

In the Windows 7 and Server 2008 Event Viewer there is a folder for…

  • 0

In the Windows 7 and Server 2008 Event Viewer there is a folder for…

Applications and Services Logs

I want to create a place where all events from my application are logged. How do you create a log under this area? From the event viewer, all I see is “Create View” which appears to simply be a way to create a filtered view of events in a particular log.

Once this is created, how do you write events to it?

For example if my log is named ‘StackApp’, would you just use…

EventLog.WriteEntry('StackApp', message);

Thanks!

  • 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-23T12:06:19+00:00Added an answer on May 23, 2026 at 12:06 pm

    if your EventLog was created then you can do EventLog.WriteEntry("StackApp", message);

    //create a log
    string source;
    string logName;
    string machineName;//use "." for this machine
    
    if (!EventLog.Exists(logName, machineName))
    {
        EventSourceCreationData creationData = new EventSourceCreationData(source, name);
        EventLog.CreateEventSource(creationData);
    }
    

    More operation on log:

    //find your log in the windows EventLog by name
    EventLog log = null;
    foreach (EventLog eventLog in EventLog.GetEventLogs())
    {
        if (string.Compare(eventLog.Log, logName, true) == 0)
        {
            log = eventLog;
            break;
        }
    }
    
    //modify log settings
    log.ModifyOverflowPolicy(OverflowAction.OverwriteAsNeeded, 7);
    log.MaximumKilobytes = MaxLogSize;
    
    //write to event to log
    EventLog.WriteEntry(source, message);
    
    //more advance writing to log instance
    long instanceId;
    int categoryId;;
    EventLogEntryType entryType;
    byte[] binaryData;
    object[] values;
    
    EventInstance eventInstance = new EventInstance(instanceId, categoryId, entryType);
    log.WriteEvent(eventInstance, binaryData, values);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to give Windows Server 2008 a try as a .NET developer and
When using the Event Viewer in Windows 7, there is a separate 'XML View'
Windows Server 2008 / IIS 7... I am trying to setup and CI environment
I am currently using Windows Server 2008 Standard and have several Hyper V machines.
When I installed Windows Server 2008 I didn't have the (activation) key. Now that
I have setup web dav on windows server 2008. It seems to work fine
I'm doing some tests on a Windows Server 2008. When I try to access
I'm setting up a dedicated SQL Server 2005 box on Windows Server 2008 this
On my home network I have an installation of Windows Server 2008 and for
Is it possible to query certificate store on windows server 2008 using .net platform?

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.