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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T02:42:12+00:00 2026-06-12T02:42:12+00:00

Take the following C# code: EventLog[] eventLogs; eventLogs = EventLog.GetEventLogs(computername); foreach (EventLog evt in

  • 0

Take the following C# code:

EventLog[] eventLogs;
eventLogs = EventLog.GetEventLogs(computername);
foreach (EventLog evt in eventLogs)
{
    statusMessagesListBox.Items.Add("evt.Log.ToString(): " + evt.Log.ToString() + "\t\tevt.LogDisplayName: " + evt.LogDisplayName);
}

When I run that, my output looks like this:

evt.Log.ToString(): Application      evt.LogDisplayName: Application
evt.Log.ToString(): HardwareEvents   evt.LogDisplayName: Hardware Events
evt.Log.ToString(): Security         evt.LogDisplayName: Security

And so on, like that. But why is there no Setup log? Furthermore, when I attempt to run this code:

var eventLog = new EventLog("Setup", computer);
eventLog.Clear();
eventLog.Dispose();

I get an error message that the log ‘Setup’ does not exist on that computer, even though it definitely does. The above code works for all other event logs except the Setup log.

How do I access the Setup event log?

For reference, the .NET frameworks being tried are 4.0 and 4.5, and the target computers are Windows 7 and 2008 R2.

  • 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-06-12T02:42:13+00:00Added an answer on June 12, 2026 at 2:42 am

    The EventLog class only deals with Administrative event logs. The SetUp event log is an Operational log (you can see this in Event Viewer), so cannot be dealt with by this class.

    To access the SetUp event log, you have to use the classes in the System.Diagnostics.Eventing.Reader namespace. You can iterate through the events using:

    EventLogQuery query = new EventLogQuery("SetUp", PathType.LogName);
    query.ReverseDirection = true; // this tells it to start with newest first
    EventLogReader reader = new EventLogReader(query);
    
    EventRecord eventRecord;
    
    while ((eventRecord = reader.ReadEvent()) != null)
    {
        // each eventRecord is an item from the event log
    }
    

    Take a look at this MDSN article for more detailed examples.

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

Sidebar

Related Questions

Take the following code for example; if (Convert.ToString(frm.WindowState) == Minimized) Layout.WindowState = Maximized; else
Take the following code snippet: SPAttachmentCollection attachments = item.Attachments ; What exactly is SPAttachmentCollection
Take the following code: <abbr title=World Health Organization>WHO</abbr> Can we style an abbr tag's
Take the following code: public static string ReverseIt(string myString) { char[] foo = myString.ToCharArray();
Okay so i have a semi weridish problem with re.sub. Take the following code:
Take the following C code as an example: char buffer1[5]; int* ret; printf(Buffer1 is:
Take the following lines of code that would work fine in a c# asp.net
Take a look that the following code snippet: A a = null try {
I have the following code to take an image and generate the thumbnail. how
I have the following code to take screenshots of a window: HDC WinDC; HDC

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.