无法监控安全事件日志

发布于 2024-10-22 14:18:19 字数 324 浏览 8 评论 0原文

我有这个代码:

{
    EventLog ev = new EventLog("Security");
    ev.EntryWritten += new EntryWrittenEventHandler(ev_EntryWritten);
}

static void ev_EntryWritten(object sender, EntryWrittenEventArgs e)
{
    log_to_file("ev_EntryWritten");
}

但我没有收到任何安全事件。该程序在 XP SP3 上作为 Windows 服务运行。我缺少什么?

I have this code:

{
    EventLog ev = new EventLog("Security");
    ev.EntryWritten += new EntryWrittenEventHandler(ev_EntryWritten);
}

static void ev_EntryWritten(object sender, EntryWrittenEventArgs e)
{
    log_to_file("ev_EntryWritten");
}

But I receive no security events whatsoever. The program runs as a Windows Service on XP SP3. What am I missing?

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

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

发布评论

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

评论(1

丢了幸福的猪 2024-10-29 14:18:19

确保设置 EnableRaisingEvents = true;

另外,我会先将其作为普通应用程序运行,然后再在服务帐户下运行它。确保它不是在 LocalSystem 下运行,而是在为该服务定义为登录用户的其他用户下运行。您将看不到服务的 GUI,因此 Console.WriteLine 毫无用处。

Make sure you set EnableRaisingEvents = true;

Also, I would run it as a normal application first prior to running it under a service account. Make sure it isn't running under LocalSystem but some other user that is defined for that service as the logon user. You will not see GUI for a service so Console.WriteLine is useless.

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