是否可以在自己的应用程序中使用 Windows 7 任务计划程序
我正在开发基于附加的应用程序。每个附加组件都使用调度程序。已加载附加计划任务。我的应用程序只运行一个实例。有时应用程序关闭,有时正在运行。因此我需要使用 Windows 7 任务计划程序
如何在自己的应用程序上使用任务计划程序?
我需要从应用程序创建新任务
我需要在任务完成后,向我的应用程序发送消息或调用我的应用程序的任何功能
可能吗?
怎么做?
I'm developing add-on based application. Every add-on use scheduler. Loaded add-on schedule task. My application run only one instance. Sometimes application closed, sometimes running. Therefore i need to use Windows 7 Task scheduler
How to use task scheduler on own application?
I need create new task from application
I need that when task finish, Send message to my application or invoke any function of my application
Is it possible?
How to do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在 CodeProject 上查看这个项目。
.NET 的新任务计划程序类库
Check out this project at CodeProject.
A New Task Scheduler Class Library for .NET
如果您想通过代码与 Windows 7 计划任务系统交互来创建、管理或删除任务,那是没有问题的。 (我在为 Pluralsight 编写的 Windows 7 课程中对此进行了介绍。)向 TaskScheduler 添加 COM 引用,然后执行此类操作:
此特定示例运行同一解决方案(另一个项目)中的 exe。您必须调整 Action.Path、Action.WorkingDirectory 等以满足您的需求。
If you want to interact with the Windows 7 Scheduled Tasks system from your code to create, manage, or delete a task that is no problem. (I cover this in the Windows 7 course I wrote for Pluralsight.) Add a COM reference to TaskScheduler and you then do this sort of thing:
This particular sample runs an exe that is in the same solution (another project). You would have to adjust the Action.Path, Action.WorkingDirectory etc to meet your needs.
感谢凯特提供的出色示例,我后悔在我的漫游中没有首先遇到您的代码。
我通过 C# 代码注册计划任务进行了一段快乐的舞蹈,毫不奇怪的是,当我在一个环境中遇到我以前从未遇到过的障碍时,我不得不调整我的计划创建代码。我希望我已经得到了最强大的代码,并且认为如果我分享一些您在遇到环境问题时可能会尝试的事情,它也可能对其他人有益:
一切顺利
马特
Thanks for the excellent example Kate, I rue that in my wanderings I didn't come across your code first.
I've had a merry dance with registering scheduled tasks via c# code and unsurprisingly have had to tweak my schedule creation code as I encounter roadblocks on one environment that I hadn't encountered on any previously. I hope I've arrived at the most robust code and thought it might also be of benefit to others if I share some things you might try if encountering environmental issues:
all the best
Matt