创建计划任务
我正在开发一个 C# WPF 项目。我需要允许用户创建计划任务并将其添加到 Windows 任务计划程序。
我怎样才能做到这一点以及我需要什么使用指令和参考资料,因为我在搜索互联网时没有找到太多信息。
I am working on a C# WPF project. I need to allow the user to create and add a scheduled task to the Windows Task Scheduler.
How could I go about doing this and what using directives and references do I need as I am not finding much when searching the Internet.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用任务计划程序托管包装:
或者您可以使用本机 API 或选择 Quartz.NET。有关详细信息,请参阅此。
You can use Task Scheduler Managed Wrapper:
Alternatively you can use native API or go for Quartz.NET. See this for details.
这对我有用
https://www.nuget.org/packages/ASquare.WindowsTaskScheduler/
它是设计精美的 Fluent API。
This works for me
https://www.nuget.org/packages/ASquare.WindowsTaskScheduler/
It is nicely designed Fluent API.