-->

Senin, 26 Maret 2018

Event Viewer is a component of Microsoft's Windows NT line of operating systems that lets administrators and users view the event logs on a local or remote machine. In Windows Vista, Microsoft overhauled the event system.

Due to the event viewer's routine reporting of minor start-up and processing errors (which do not in fact harm or damage the computer), the software is frequently used by technical support scammers to convince users unfamiliar with Event Viewer that their computer contains critical errors requiring immediate technical support. An example is the "Administrative Events" field under "Custom Views" which can have over a thousand errors or warnings logged over a month's time.

Overview




Monitor event logs - This video looks are how to look at the event log to troubleshoot problems on your computer. The event log contains information that is in valuable to troubleshooting your computer.

Windows NT has featured event logs since its release in 1993. Applications and operating-system components can use this centralized log service to report events that have taken place, such as a failure to start a component or to complete an action.

The Event Viewer uses event IDs to define the uniquely identifiable events that a Windows computer can encounter. For example, when a user's authentication fails, the system may generate Event ID 672.

Windows NT 4.0 added support for defining "event sources" (i.e. the application which created the event) and performing backups of logs.

Windows 2000 added the capability for applications to create their own log sources in addition to the three system-defined "System", "Application", and "Security" log-files. Windows 2000 also replaced NT4's Event Viewer with a Microsoft Management Console (MMC) snap-in.

Windows Server 2003 added the AuthzInstallSecurityEventSource() API calls so that applications could register with the security-event logs, and write security-audit entries.

Versions of Windows based on the Windows NT 6.0 kernel (Windows Vista and Windows Server 2008) no longer have a 300-megabyte limit to their total size. Prior to NT 6.0, the system opened on-disk files as memory-mapped files in kernel memory space, which used the same memory pools as other kernel components.

Event Viewer log-files with filename extension evtx typically appear in a directory such as C:\Windows\System32\winevt\Logs\

Windows XP (commandline)


Event Viewer - Open and Use in Windows 7 - Windows 7 Help Forums
Event Viewer - Open and Use in Windows 7 - Windows 7 Help Forums. Source : www.sevenforums.com

Windows XP provides a set of three commandline tools, useful to task automation:

  • eventquery.vbs - Official script to query, filter and output results based on the event logs. Discontinued after XP.
  • eventcreate - a command (continued in Vista and 7) to put custom events in the logs.
  • eventtriggers - a command to create event driven tasks. Discontinued after XP, replaced by the "Attach task to this event" feature.

Windows Vista


What is Event Viewer, and Why Does It Have So Many Errors? - Ask Leo!
What is Event Viewer, and Why Does It Have So Many Errors? - Ask Leo!. Source : askleo.com

Event Viewer consists of a rewritten event tracing and logging architecture on Windows Vista. It has been rewritten around a structured XML log-format and a designated log type to allow applications to more precisely log events and to help make it easier for support technicians and developers to interpret the events. The XML representation of the event can be viewed on the Details tab in an event's properties. It is also possible to view all potential events, their structures, registered event publishers and their configuration using the wevtutil utility, even before the events are fired. There are a large number of different types of event logs including Administrative, Operational, Analytic, and Debug log types. Selecting the Application Logs node in the Scope pane reveals numerous new subcategorized event logs, including many labeled as diagnostic logs. Analytic and Debug events which are high frequency are directly saved into a trace file while Admin and Operational events are infrequent enough to allow additional processing without affecting system performance, so they are delivered to the Event Log service. Events are published asynchronously to reduce the performance impact on the event publishing application. Event attributes are also much more detailed and show EventID, Level, Task, Opcode, and Keywords properties.

Users can filter event logs by one or more criteria or by a limited XPath 1.0 expression, and custom views can be created for one or more events. Using XPath as the query language allows viewing logs related only to a certain subsystem or an issue with only a certain component, archiving select events and sending traces on the fly to support technicians.

Filtering using XPath 1.0

  1. Open Windows Event Log
  2. Expand out Windows Logs
  3. Select the log file that is of interest to you (In the example below, we use the Security event log)
  4. Right-click on the Event Log and select Filter Current Log...
  5. Change the selected tab from Filter to XML
  6. Check the box to Edit query manually'
  7. Paste your query into the text box. You will find sample queries below.

Here are examples of simple custom filters for the new Window Event Log:

  1. Select all events in the Security Event Log where the account name involved (TargetUserName) is "JUser"
    <QueryList><Query Id="0" Path="Security"><Select Path="Security">*[EventData[Data[@Name="TargetUserName"]="JUser"]]</Select></Query></QueryList>
  2. Select all events in the Security Event Log where any Data node of the EventData section is the string "JUser"
    <QueryList><Query Id="0" Path="Security"><Select Path="Security">*[EventData[Data="JUser"]]</Select></Query></QueryList>
  3. Select all events in the Security Event Log where any Data node of the EventData section is "JUser" or "JDoe"
    <QueryList><Query Id="0" Path="Security"><Select Path="Security">*[EventData[Data="JUser" or Data="JDoe"]]</Select></Query></QueryList>
  4. Select all events in the Security Event Log where any Data node of the EventData section is "JUser" and the Event ID is "4471"
    <QueryList><Query Id="0" Path="Security"><Select Path="Security">*[System[EventID="4471"]] and *[EventData[Data="JUser"]]</Select></Query></QueryList>
  5. Real-world example for a package called Goldmine which has two @Names
    <QueryList><Query Id="0" Path="Application"><Select Path="Application">*[System[Provider[@Name='GoldMine' or @Name='GMService']]]</Select></Query></QueryList>

Caveats:

  • There are limitations to Microsoft's implementation of XPath
  • Queries using XPath string functions will result in error

Event subscribers

Major event subscribers include the Event Collector service and Task Scheduler 2.0. The Event Collector service can automatically forward event logs to other remote systems, running Windows Vista, Windows Server 2008 or Windows Server 2003 R2 on a configurable schedule. Event logs can also be remotely viewed from other computers or multiple event logs can be centrally logged and monitored agentlessly and managed from a single computer. Events can also be directly associated with tasks, which run in the redesigned Task Scheduler and trigger automated actions when particular events take place.

See also


Event Viewer - Open and Use in Windows 7 - Windows 7 Help Forums
Event Viewer - Open and Use in Windows 7 - Windows 7 Help Forums. Source : www.sevenforums.com

  • List of Microsoft Windows components
  • Microsoft Management Console
  • Technical support scam

References


Clear All Event Logs in Event Viewer in Windows Windows 10 Tutorials
Clear All Event Logs in Event Viewer in Windows Windows 10 Tutorials. Source : www.tenforums.com

External links


Configuring Event Logs with Group Policy - Group Policy Software ...
Configuring Event Logs with Group Policy - Group Policy Software .... Source : sdmsoftware.com

  • Official sources:
    • Developer documentation for event logging (NT 3.1 through XP), (Windows Vista)
    • Windows 2000 Security Event Descriptions (Part 1 of 2), (Part 2 of 2)
    • Windows Server 2003 Security â€" Threats and Countermeasures â€" Chapter 6: Event Log from Microsoft TechNet
    • Events and Errors (Windows Server 2008) on Microsoft TechNet
  • Other:
    • Windows Eventlog Viewer Commercial tool that can be run on Windows, Linux or Mac OS X
    • evtwalk Command line tool to pull events and generate reports (password changes, logons, clock changes, system start/stop, credential changes) from Windows event logs.
    • eventid.net â€" Contains several thousand Windows event log entries along with troubleshooting suggestions for each of them
  • For Developers:
    • How to write to an event log by using Visual C#

Shut Down - View Details of Last Shutdown of Computer - Windows 7 ...
Shut Down - View Details of Last Shutdown of Computer - Windows 7 .... Source : www.sevenforums.com

 
Sponsored Links