Windows 7/ 2008 Server 上的 C# 事件日志记录

发布于 2024-09-10 02:32:53 字数 315 浏览 14 评论 0原文

我正在尝试为我的命令行应用程序制作一个事件记录器。但是,当它第一次尝试创建日志时,我收到此错误。

未找到来源,但有些或 无法搜索所有事件日志。 无法访问的日志:安全性。

所以我发现这是因为 Windows 7 和一些新的安全性。所以现在我必须授予 .exe 管理员权限。

有没有办法解决这个问题,这样就不需要管理员权限?我不知道如果人们必须满足于以管理员权限运行我的应用程序,他们是否会感觉太好。

我计划稍后将其放在 Windows 2008 机器上,所以我猜测它也会遇到同样的问题。

i am trying to make an event logger for my cmd line application. However I get this error when it tries to create the log for the first time.

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

So I found this is a because of windows 7 and some new security. So right now I have to give the .exe admin rights.

Is there a way around this so it would not need admin rights? I don't know if people would feel too good if they have to contently run my application with admin rights.

I am planning to put this later on a windows 2008 machine so I am guessing it will suffer from the same problem.

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

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

发布评论

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

评论(2

听,心雨的声音 2024-09-17 02:32:53

您可以在安装时创建事件源,这样他们只需要做一次选择。在注册表中创建源后,您可以向其中添加事件,而无需管理员权限。

除了 CreateEventSource 函数之外,还有 EventLogInstaller 类:

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

WiX 还在其实用程序扩展中提供了此功能:

如何使用 WiX 创建事件日志源

You could create the event source at the point of installation so they only need to make that choice once. Once the source is created in the registry you can add events to it without the need for admin rights.

As well as the CreateEventSource function there is also the EventLogInstaller class:

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

WiX also offers this functionality in it's Utility extension:

How do you create an event log source using WiX

虐人心 2024-09-17 02:32:53

网络服务或模拟用户必须具有对 HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\EventLog\Security 的读/写访问权限

NETWORK SERVICE OR Impersonated User must have Read/Write access to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\EventLog\Security

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