Windows 7 上的 log4net EventLogAppender 问题

发布于 2024-09-29 23:44:40 字数 520 浏览 2 评论 0原文

您好,我在 Windows7 上遇到 EventLogAppender 问题。 配置EventLogAppender的代码是:

       var elAppender = new EventLogAppender
            {
                ApplicationName = "MyLog",
                LogName = "MyLog",
                Layout = new PatternLayout(default_format),
                Threshold = Level.Error
            };

错误消息是:

The source was not found, but some or all event logs could not be searched.  Inaccessible logs: Security.

你能帮我解决这个问题吗? 谢谢。

Hello I have problem with EventLogAppender on the Windows7.
Code for config EventLogAppender is:

       var elAppender = new EventLogAppender
            {
                ApplicationName = "MyLog",
                LogName = "MyLog",
                Layout = new PatternLayout(default_format),
                Threshold = Level.Error
            };

The error message is:

The source was not found, but some or all event logs could not be searched.  Inaccessible logs: Security.

Could you help me to resolve this problem?
Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

半枫 2024-10-06 23:44:40

你关闭UAC了吗?或者您的应用程序是否以提升的权限运行?如果没有,它将无法工作,除非您在运行应用程序之前手动创建事件源(可能作为安装程序的一部分):

http://msdn.microsoft.com/en-us/library/system.diagnostics.eventlog.createeventsource.aspx

Did you turn off UAC? Or does your application run with elevated permissions? If not it will not work unless you create the event source manually before you run the application (maybe as part of an installer):

http://msdn.microsoft.com/en-us/library/system.diagnostics.eventlog.createeventsource.aspx

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文