我可以像使用 serviceController 检测服务一样检测计划任务的状态吗?
我正在为我的网络应用程序构建一个状态页面,并希望它向我显示关键的本地 Windows 服务和计划任务的状态。
我已经完成了使用 serviceController 来设置监视和报告 Windows 服务状态的逻辑。
我如何对 mt 计划任务执行同样的操作?
I am building a status page for my web app and want to have it show me the status of critical home grown windows services and scheduled tasks.
I have finished setting up the logic to monitor and report on the status of windows services using serviceController.
how do i do the same with mt scheduled tasks?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不能直接使用,但可以使用 ServiceController。有一个任务计划程序API,但没有用于此的托管 API。您需要直接使用 COM API。
You can't directly, as you can with ServiceController. There is a Task Scheduler API, but no managed API for this. You'd need to use the COM API directly.