How to make Windows Service start as "Automatic (Delayed Start)" ?
Now that .NET 4.0 is here:
serviceInstaller1.StartType = ServiceStartMode.Automatic;
serviceInstaller1.DelayedAutoStart = true;
https://stackoverflow.com/a/9525289
Now that .NET 4.0 is here:
serviceInstaller1.StartType = ServiceStartMode.Automatic;
serviceInstaller1.DelayedAutoStart = true;
https://stackoverflow.com/a/9525289
Ulasan