0

我尝试创建简单的日志并使用此方法,但我收到有关 Admin 的错误。权利。这怎么可能?我看到了应用程序。拥有所有管理员权限。

public static void WriteToEventLog(string message)
        {
            try
            {
                string cs = "WebReports";
                EventLog elog = new EventLog();

                if (!EventLog.SourceExists(cs))
                {
                    EventLog.CreateEventSource(cs + "Source", cs + "Log");
                }

                elog.Source = cs;
                elog.EnableRaisingEvents = true;
                elog.WriteEntry(message);
            }
            catch
            {
                  // ERROR OCCURES
            }
        }

任何线索谢谢!

4

0 回答 0