EventLog 書き込む
色々試してみた。
class Program { static void Main(string[] args) { string source = "MySource"; if (!EventLog.SourceExists(source)) { EventLog.CreateEventSource(source, ""); } EventLog.WriteEntry(source, "SampleMessage", EventLogEntryType.Information); } }
なんとなく書いてみたが、、、、SecurityError(Windows7) 多分 Vista でもエラーが出るはず。
管理権限で起動すると動かせる。