A while ago I followed the MSDN example of how to write a windows service. It included the following code:
public Monitor_Processes()
{
InitializeComponent();
if (!System.Diagnostics.EventLog.SourceExists("Monitor_Processes"))
{
System.Diagnostics.EventLog.CreateEventSource("Monitor_Processes", "Monitor_Processes_Log");
}
eventLog1.Source = "Monitor_Processes";
eventLog1.Log = "Monitor_Processes_Log";
}
It installed ok, but I got an error starting the service. When I checked the event log it says: "The source 'Monitor_Processes' is not registered in log 'Monitor_Processes_Log'. (It is registered in log 'Application'.)"
I have since changed the code to look like this:
public Monitor_Processes()
{
InitializeComponent();
if (!System.Diagnostics.EventLog.SourceExists("Monitor_Processes"))
{
System.Diagnostics.EventLog.CreateEventSource("Monitor_Processes", "");
}
eventLog1.Source = "Monitor_Processes";
}
But now, I still get the same error when trying to start the service (the error message is still referring to "Monitor_Processes_Log") -- even after an uninstall and a reboot.
How can I start fresh and have my source registered to the Application log (assuming my service will start successfully then)?