diff --git a/Enumerations/EventID.cs b/Enumerations/EventID.cs
index 38880a9..5803386 100644
--- a/Enumerations/EventID.cs
+++ b/Enumerations/EventID.cs
@@ -25,6 +25,11 @@ namespace SinclairCC.MakeMeAdmin
///
public enum EventID : int
{
+ ///
+ /// The built-in service functionality uses Event ID 0 to log service start/stop events.
+ ///
+ ServiceStartStop,
+
///
/// A user was added to the Administrators group.
///
diff --git a/Logging/ApplicationLog.cs b/Logging/ApplicationLog.cs
index 2a38ea9..3249282 100644
--- a/Logging/ApplicationLog.cs
+++ b/Logging/ApplicationLog.cs
@@ -30,7 +30,7 @@ public class ApplicationLog
///
/// The source name to use when writing events to the Event Log.
///
- private const string SourceName = "Make Me Admin";
+ private const string SourceName = "MakeMeAdmin";
///
/// An EventLog object for interacting with this service's event log.