Handle exception in ServiceBase.OnStart method
https://stackoverflow.com/questions/158772/handle-exception-on-service-startup
If the main thing you want is for the Services window to report that there was an error, from what I've tried (.net 3.5 on Windows 7), the only way to do this is by setting the ExitCode. I recommend setting it to 13816, since this results in the message, "An unknown error has occurred." See the windows error codes.
The sample below accomplishes three things.
1 - setting ExitCode results in a useful message for the end-user. It doesn't affect the Windows Application log but does include a message in the System log.
2 - Calling Stop results in a "Service successfully stopped" message in the Application log.
3 - throwing the exception results in a useful log entry in the Application log.
protected override void OnStart(string[] args) { try { // Start your service } catch (Exception ex) { // Log exception this.ExitCode = 13816; this.Stop(); throw; } }
作者:Chuck Lu GitHub |
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步