使用C#访问Windows计划任务
如何使用 C#.NET 更改计划任务使用的凭据?
How do I change the credentials used by a scheduled task using C#.NET?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何使用 C#.NET 更改计划任务使用的凭据?
How do I change the credentials used by a scheduled task using C#.NET?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
您可以使用“SCHTASKS”命令来代替使用代码,并使用 System.Diagnostic.Process.Start 方法和所需的参数运行它。 这很容易,不需要太多努力。
Instead of using code, you can do it using 'SCHTASKS' command, run it using System.Diagnostic.Process.Start method with the parameters required. It's easy and not much effort required.
有人在 codeproject.com 上编写了一个任务调度程序类库,它可能是你的追求是什么...
:)
Someone has written a task scheduler class library on codeproject.com, it might be what your after...
:)
您必须使用新用户名和密码调用任务定义的 RegisterTaskDefintion 才能仅更改密码。
代码片段 答案
原始来源:
http://taskscheduler.codeplex.com/discussions/215362
You must call RegisterTaskDefintion for the task's definition with the new username and password to change just the password.
Code fragment
Original source for answer:
http://taskscheduler.codeplex.com/discussions/215362
查看此库用于与 TaskScheduler 一起使用。 它是用 VB 编写的,但我很容易引用它并从 C# 调用它。
Check out this library for working with TaskSheduler. It's written in VB, but I referenced it easily and called it from C#.