Windows服务启动时间

发布于 2024-09-13 08:51:17 字数 129 浏览 4 评论 0原文

有没有一种方法可以以编程方式检索 Windows XP 中启动过程中启动的所有 Windows 服务的启动时间/持续时间? 也就是说,服务被初始化到进入“启动”状态的时间。

先感谢您!

PS我不是要求软件推荐。

Is there a way to programmatically retrieve start-up time/duration for all the Windows Services that have started during boot in Windows XP?
That is, the time the service was initialized to getting to the "started" state.

Thank you in advance!

P.S. I'm not asking for software recommendation.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

爱本泡沫多脆弱 2024-09-20 08:51:17

我首先查看事件查看器中的日志,检查您想要的信息是否存在。

如果是,则使用 Microsoft 的 EventLog 类来获取您想要的日志。

例如,如果您对系统日志使用感兴趣 -

 EventLog systemLog = new EventLog("System");

systemLog 包含系统日志中所有条目的集合。从那里应该很容易。

I would start with looking at the logs in event viewer, check if that information you want is there.

If it is, then use Microsofts EventLog class to get the log you want.

For example if you're interested in the System log use -

 EventLog systemLog = new EventLog("System");

systemLog contains a collection of all entries in the System log. Should be easy from there.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文