Windows服务启动时间
有没有一种方法可以以编程方式检索 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我首先查看事件查看器中的日志,检查您想要的信息是否存在。
如果是,则使用 Microsoft 的 EventLog 类来获取您想要的日志。
例如,如果您对系统日志使用感兴趣 -
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 -
systemLog contains a collection of all entries in the System log. Should be easy from there.