但无法搜索部分或全部事件日志

但无法搜索部分或全部事件日志

本文介绍了找不到源,但无法搜索部分或全部事件日志。无法访问的日志:安全性。的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想通过对以下代码进行编码来动态地在事件查看器中创建事件日志:



i want to create a event log in event viewer dynamically by coding i code like this:

if (!EventLog.SourceExists("MySource"))
{
EventLog.CreateEventSource("MySource","MyNewLog");
}
// Create an EventLog instance and assign its source.
EventLog eventLog = new EventLog();

// Setting the source
eventLog.Source = "MySource";

// Write an entry to the event log.
eventLog.WriteEntry("An error has been generated by the application", EventLogEntryType.Error, 1002);

推荐答案


这篇关于找不到源,但无法搜索部分或全部事件日志。无法访问的日志:安全性。的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-04 02:05