我需要您关于应用程序和服务日志的帮助。我已经创建了一个Windows服务应用程序,但问题是在注册表(HKEYLM> SYSTEM> CurrentControlSet>服务> EventLog)中,源和日志是存在的,但是在事件查看器中没有显示应用程序和服务日志。
我在这里使用VB.NET是我的代码:
Public Const EvtLogSource As String = "MySource"
Public Const EvtLogName As String = "ExportLog"
Public EventLog1 As New EventLog(EvtLogName, ".", EvtLogSource)
If Not System.Diagnostics.EventLog.SourceExists(EvtLogSource) Then
System.Diagnostics.EventLog.CreateEventSource(EvtLogSource, EvtLogName)
End If
EventLog1.Source = EvtLogSource
答案 0 :(得分:0)
我刚刚重启机器。我的事件日志显示。