Permissions required to create / modify tasks in the Windows Task Scheduler

I need to create and modify tasks in the Windows Task Scheduler on Windows Server 2003 from an ASP.NET web application. The network service running the web application cannot make changes. These are errors with a System.UnauthorizedAccessException exception.

It works fine from Visual Studio on my desktop.

What permissions are required to grant an account so that tasks can be changed from ASP.NET?

+3
source share
3 answers

The account must have read and write permissions in the Tasks directory. Here's the way:

%SystemRoot%\system32\Tasks\
+4
source

. , Windows Server 2003 Local System , . , , Local System. , .

Windows XP.

+1

Source: https://habr.com/ru/post/1707014/


All Articles