Service recovery with Util:ServiceConfig
Windows allows you to set actions to be taken if your service fails at some point while it's running. Note that at this point, we're handling errors that crash the service during its lifetime and not errors during the installation. Your three options are: try to restart the service, run an executable file or script, or reboot the machine. You can see these settings in the services management console by viewing Properties of your service and clicking on the Recovery tab.
First, let's alter the original Windows service that we created by changing the WriteToLog
function so that it throws an error the third time it prints a message. As this error is uncaught, it will cause the service to stop running. This will give the failure recovery actions a chance to kick in. The following is the new code for WriteToLog
:
protected void WriteToLog() { int count = 0; string appDataDir = Environment.GetFolderPath( Environment.SpecialFolder.CommonApplicationData...