Windows服务日志写入系统关机重新启动

Windows服务日志写入系统关机重新启动,第1张

概述Windows服务日志写入系统关机/重新启动

问题是,当主机重新启动(windows重新启动)或关机(windows关机)没有什么被写入日志。

我在windows服务中有以下内容:

protected overrIDe voID OnStart(string[] args) { eventLogUtility.WritetoEventLog("Service has Started.",EventLogEntryType.information); } protected overrIDe voID OnStop() { eventLogUtility.WritetoEventLog("Service has Stopped.",EventLogEntryType.information); } /// <summary>When implemented in a derived class,executes when the system is shutting down. /// SpecifIEs what should occur immediately prior to the system shutting down.</summary> protected overrIDe voID OnShutdown() { eventLogUtility.WritetoEventLog("Service has Shutdown.",EventLogEntryType.information); }

服务启动时,“服务已启动”。 写入日志。

服务停止后,“服务已经停止”。 写入日志。

在VB.net中dynamic添加一个用户控件

手动创build未绑定的数据网格

一种可靠的方法来识别显示设备?

如何使方法运行在“后台”(线程?)

.NET软件更新pipe理器

PS使用.Net 4.5

将多个键绑定到KeyDown事件(Shift + *(Asterisk))

将数据从string传输到数据视图

我可以使用linux / Mono来部署aspnet web应用程序吗?

限制.net文本框中的行数

等同于.NET中的windows错误代码

这可能是因为windows服务之前关闭了windows事件日志服务。 您可以通过使用ServiceInstaller使服务取决于windows Event Log来解决此问题。

... ServiceInstaller serviceInstaller = new ServiceInstaller() serviceInstaller.ServicesDependedOn = new string [] { "EventLog" }; ...

或通过添加“ EventLog ”与可视化编辑器:

总结

以上是内存溢出为你收集整理的Windows服务日志写入系统关机/重新启动全部内容,希望文章能够帮你解决Windows服务日志写入系统关机/重新启动所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1289950.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-09
下一篇 2022-06-09

发表评论

登录后才能评论

评论列表(0条)

保存