using System; using System.Collections.Generic; using System.Linq; using System.Windows.Forms; namespace ServiceConfigurator { static class Program { internal static bool notify = true; /// /// The main entry point for the application. /// [STAThread] static void Main(string[] args) { if (args.Length > 0) { if (args[0] == "-s") { notify = false; } } Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new Form1()); } } }