public MyNewService()
{
   InitializeComponent();
   if (!System.Diagnostics.EventLog.SourceExists("MySource")) 
   {         
      System.Diagnostics.EventLog.CreateEventSource(
         "MySource","MyNewLog");
   }
   eventLog1.Source = "MySource";
   eventLog1.Log = "MyNewLog";
}
我按照MSDN上的写法用的,但是一执行到System.Diagnostics.EventLog.SourceExists("MySource")这句就会
产生异常,提示"未找到源,但未能搜索某些或全部事件日志。不可访问的日志: Security。"
请问这该怎样解决呢?