EventLog write permissions

后端 未结 2 865
夕颜
夕颜 2020-12-05 17:24

My question is related to write permissions to the Windows Event Log. I have looked around several posts concering this, and have found some ways to solve my problem, but no

相关标签:
2条回答
  • 2020-12-05 18:09

    The answer showed to be "no".

    I realize there are no good way of solving this the way I requested. There must be a manual job done.

    So the solution I pick for this scenario is that customers who cannot run the service as an administrator or do a manual registry edit cannot use the functions around logging to event log. And I will make it possible to enable and disable the logging from the config.

    Admin user and registry edit are known ways for me, but as stated something I was trying to avoid. But that is, as it seems, not possible according to my criterias this time.

    0 讨论(0)
  • 2020-12-05 18:17

    By default, any authenticated user is able to write to application event log. However only administrators can create new event Sources. If all event Sources are known at the service installation time, I recommend register those sources ahead of time, then you will be all set up. Registering is a simple call to EventLog.CreateEventSource.

    If you need more flexibility on event sources, you can customize permissions. Those defaults could be customized by tweaking a registry key:

      HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\Eventlog\Application\CustomSD
    

    A process described in this KB Article. A wevtutil tool, which is part of OS, available on Server 2008 and above, makes it a bit easier than going through regedit.

    0 讨论(0)
提交回复
热议问题