Tagged Questions
The event-viewer tag has no wiki summary.
4
votes
4answers
251 views
How would I go about backing up the Windows Application Log at a regular interval?
I'm working with an application that logs to Windows Application Log regularly (viewable through the Event Viewer administrative tool), and I'm looking for a way to back it up on a daily basis. This ...
2
votes
2answers
212 views
How can I open Event Viewer from a web page using c#?
I have a requirement where I need to just open an Event Viewer to the internal users from an internal webpage. I have a link "Evetn Viewer" and a dropdown "Servers", when user select a server and ...
1
vote
1answer
93 views
Log4J How to set log FOLDER (KEY) on NTEventLogAppender
I've created a appender of the type NTEventLogAppender like this:
log4j.appender.EVA=org.apache.log4j.nt.NTEventLogAppender
#log4j.appender.EVA.log=TestLog
...
0
votes
0answers
28 views
Logging events in event Viewer using c# - “The description of Event(0) is Source(Application) can not be found. ”
I use the following code to log my error in Application (source) log:
EventLog log = new EventLog();
log.Source = "Application";
log.WriteEntry("test message goes here", EventLogEntryType.Error);
I ...
0
votes
1answer
72 views
Open event viewer from a certain node
What is the command to open windows event viewer displaying a particular node details?
For example if I simply use eventvwr command; it opens the UI with Root Node selected. I want Application node ...
0
votes
1answer
81 views
Create web share with C# fails with no errors
I want to create on a specific folder web share (on the IIS).
I don't have any errors in the logs yet the share is not created (code below).
in the event viewer I see two "service control manager" ...
0
votes
1answer
414 views
Get event viewer logs with win api in c++
My application need to save event viewer logs to a specified directory and it has to be done with win api. Application and System logs are required.
EDIT: EvtExportLog - I found out that I can't use ...
0
votes
1answer
397 views
Logging Application Block doesn't add log entries to Event Viewer on machines other than that on which the application was built
I am using the Logging Application Block (of Microsoft Enterprise Library 5.0) to log exceptions in the Event Viewer that occur in my WPF XBAP application.
However, exceptions are only being logged ...