Failed to start task scheduler

Last weekend I met a Startup Error in the Windows Task Scheduler. Details are given below:

> Log Name: Microsoft-Windows-TaskScheduler/Operational Source: > Microsoft-Windows-TaskScheduler Date: 6/24/2012 1:14:16 PM > Event ID: 101 Task Category: Task Start Failed Level: > Error Keywords: (1) User: SYSTEM Computer: Some > Computer Name Description: Task Scheduler failed to start "some file > path" task for user "author". Additional Data: Error Value: > 2147549186. Event Xml: <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event"> > <System> > <Provider Name="Microsoft-Windows-TaskScheduler" Guid="{DE7B24EA-73C8-4A09-985D-5BDADCFA9017}" /> > <EventID>101</EventID> > <Version>0</Version> > <Level>2</Level> > <Task>101</Task> > <Opcode>101</Opcode> > <Keywords>0x8000000000000001</Keywords> > <TimeCreated SystemTime="2012-06-24T20:14:16.003204300Z" /> > <EventRecordID>2091795</EventRecordID> > <Correlation /> > <Execution ProcessID="936" ThreadID="812" /> > <Channel>Microsoft-Windows-TaskScheduler/Operational</Channel> > <Computer>Some Computer Name</Computer> > <Security UserID="" /> </System> <EventData Name="TaskStartFailedEvent"> > <Data Name="TaskName">some file path</Data> > <Data Name="UserContext">author</Data> > <Data Name="ResultCode">2147549186</Data> </EventData> </Event> 

Firstly, what is the meaning of the error code "Error Value: 2147549186" .
Secondly, what could be causing this problem.
Finally, what is the resolution on this.

My heartfelt thanks in advance for the answers :)

+6
source share
2 answers

So, I had the same problem on my server after changing the password for the account in which the tasks were performed. To solve, I made changes to the task settings, which required me to re-enter the account password.

+13
source

I had the same problem with the same error code. After that you can try. === quote start === in the task scheduler, click on the properties of the scheduled tasks β†’>, then the settings

in the last parameter specified: "if the task is already running, the following rule looks as follows: select" stop the existing instance "in the drop-down list.

http://answers.microsoft.com/en-us/windows/forum/windows_vista-windows_programs/task-scheduler-failed-to-start-additional-data/96994b77-d690-4403-8b51-4e1d0ae998e1

+1
source

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


All Articles