Dim sSource As String Dim sLog As String Dim sEvent As String
sSource = "TestSystem" sLog = "テストシステム" sEvent = "Eventです" If Not EventLog.SourceExists(sLog, ".") Then EventLog.CreateEventSource(sSource, sLog, ".") End If
Dim myLog As New EventLog myLog.Source = sSource myLog.Log = sLog myLog.WriteEntry(sLog, "文字列", EventLogEntryType.Error)
分類:[.NET]
ローカルマシンにイベントログを書き込みたいのですが、
イベントビューアーの「アプリケーション」「セキュリティー」「システム」とは別にひとつ作り書きたいのですが、うまくいきません。。。
Dim sSource As String
Dim sLog As String
Dim sEvent As String
sSource = "TestSystem"
sLog = "テストシステム"
sEvent = "Eventです"
If Not EventLog.SourceExists(sLog, ".") Then
EventLog.CreateEventSource(sSource, sLog, ".")
End If
Dim myLog As New EventLog
myLog.Source = sSource
myLog.Log = sLog
myLog.WriteEntry(sLog, "文字列", EventLogEntryType.Error)
ご教授願います。