在 Windows 任务计划程序中创建/修改任务所需的权限

发布于 2024-07-17 05:04:55 字数 228 浏览 6 评论 0原文

我需要从 ASP.NET Web 应用程序在 Windows Server 2003 上的 Windows 任务计划程序中创建和修改任务。 Web 应用程序运行所在的网络服务无法进行更改。 它会出现 System.UnauthorizedAccessException 异常。

它在我的桌面上从 Visual Studio 运行得很好。

我需要授予帐户哪些权限才能从 ASP.NET 修改任务?

I need to create and modify tasks in Windows Task Scheduler on Windows Server 2003 from an ASP.NET web application. The Network Service that the web app runs under is unable to make the changes. It errors with an System.UnauthorizedAccessException exception.

It works fine running from Visual Studio on my desktop.

What permissions do I need to grant an account so that the tasks can be modified from ASP.NET?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

合久必婚 2024-07-24 05:04:56

该帐户需要具有“Tasks”目录的读/写权限。 这是路径:

%SystemRoot%\system32\Tasks\

The account needs to have read/write permissions to the "Tasks" directory. Here's the path:

%SystemRoot%\system32\Tasks\
终遇你 2024-07-24 05:04:56

何塞的回答部分解决了我的问题。 然而,还有一个额外的问题,Windows Server 2003 不喜欢我指定本地系统作为任务运行的帐户。 它似乎不喜欢我传递一个空密码,这就是您指定本地系统的方式。 我通过在服务器上创建一个本地帐户来运行任务并指定这个新帐户来解决这个问题。

在 Windows XP 上指定本地系统不会导致任何问题。

其他信息

Jose's answer solved my problem partially. However, there was an additional problem where Windows Server 2003 didn't like me specifying Local System as the account that the task would run under. It seemed to not like me passing in a null password which is how you specify Local System. I worked around the problem by making a local account on the server for tasks to run under and specifying this new account.

Specifying Local System didn't cause any problem on Windows XP.

Additional info

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文