What do I need to change to allow my IIS7 ASP.Net 3.5 application to create an event source and log events to Windows EventLog?

前端 未结 3 1561
你的背包
你的背包 2020-11-30 01:05

ASP.Net 3.5 running under IIS 7 doesn\'t seem to allow this out of the box.

        if (!EventLog.SourceExists(\"MyAppLog\"))
            EventLog.CreateEven         


        
相关标签:
3条回答
  • 2020-11-30 01:38

    This is part of windows security since windows 2003.

    You need to create an entry in the registry under HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Eventlog\Application Make sure that network service or the account you impersonate has permission to this registry key.

    @CheGueVerra's link: Requested Registry Access Is Not Allowed

    0 讨论(0)
  • 2020-11-30 01:45

    Right click the application and choose "Run as Administrator"

    0 讨论(0)
  • 2020-11-30 01:48

    I've copied this answer from here (the question was Log4Net but the answer still applies). The technet link misses a vital step.

    Create a registry key

    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\eventlog\Application\MY-AWESOME-APP

    Create a string value inside this

    Name it EventMessageFile, set its value to

    C:\Windows\Microsoft.NET\Framework\v2.0.50727\EventLogMessages.dll

    That path appears to work in both 64 bit and 32 bit environments.

    With this technique you don't need to set permissions in the registry, and once the key above is created it should just work.

    Alternatively
    If you don't have a large server farm but just a small "web garden" you could run a console application on each server that creates the event log source using EventLog.CreateEventSource, make sure the console application is run by an administrator.

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