Task Scheduler failed to start. Additional Data: Error Value: 2147943726

Windows 10Scheduled TasksWindows Task-Scheduler

Windows 10 Problem Overview


I am using windows 10 task scheduler to run tasks that require me using my personal user account (its necessary to use my user and not system user because of permission issues - I am part of an organization). In windows 7 computers everything worked fine but as we upgraded to win 10 I cant run the tasks without using the System user (as mentioned before it doesn't work because of permissions). I get the following error

Additional Data: Error Value: 2147943726

all I found online was an advice to use the system user other then that nothing :-(

please save my day.

here is a picture of the settings that I want to change.

img of the task scheduler

Windows 10 Solutions


Solution 1 - Windows 10

Today I got the same problem, (HRESULT) 0x8007052e (2147943726) "unknown user name or bad password"

My solution: was to Re-Asign the User on the "Change User or Group" button to get the lattest Active Directory information of the User.

Then I could Run the Task Again...

> As a better practice, you could use an "Aplicative" User instead of a > regular User which change more often in regular basis. > > If you use your account, it may change your password every some > quantity of days... and you will need to "fix it" again... > > If you use an "Aplicative" account, it may change less than regular > User... > > You could do this by going to the task tab "General", > then "Change User or Group" and assigning the "Aplicative" account, > then "OK" Button.
>

Solution 2 - Windows 10

I had the same issue with the windows task scheduler.

The reason for the failure is the recent change in the password of the system user which was configured at the time of task creation.

Solution:

  • Go to properties of task
  • Under General tab, click on "Change User or Group..."
  • Enter the username in the field "Enter the object name to select"
  • This will ask for Authentication, provide your credentials

Thats it !

Solution 3 - Windows 10

I had to select the option to "Do not store password. The task will only have access to local computer resources.", which was fine based on what the task was defined as. For me, I suspect some sort of recent patch or security hardening caused this as it seemed to move through our environments at similar but different days.

Solution 4 - Windows 10

After reading this post this is what worked for me. Go to properties of task Under General tab, at the bottom of that window you will see Configure for: Change that to the system you are using (in my case server 2012 R2) hit ok and enter your password.

Solution 5 - Windows 10

What I realized is that failure is tied to a password expired policy. The PC got a sort of "frozen" state for the scheduler until a new password is set. The problem is solved once the new password is taken into account by the system.

Highly recommended to perform a little change for the scheduler to ask a new password entry and update the task.

Solution 6 - Windows 10

I know it is a late answer, I had the same issue today, a schedduled task I had created a long time ago and stopped running a week ago. Turns out i had changed the password for my username which was the issue. once I went back to the task, made a chance I was asked for the password again.

Solution 7 - Windows 10

Go to Control Panel>System and Security>Administrative Tools -> Local Security Policy -> Local Policies -> User Rights Assignment -> Log on as a batch job

Add the System User.

Solution 8 - Windows 10

When choosing "Run whether user is logged in or not" on Windows Server 2019 I was getting the error message:

> An error has occurred for task Dealer Portal data import. Error message: The following error was reported: 2147943712

There is a Group Policy setting that stops this working, you can disable it with the following steps:

  1. Start > Run > secpol.msc
  2. Security Settings > Local Policies > Security Options > Network access: Do not allow storage of passwords and credentials for network authentication
  3. Disable that

Now you can save the Scheduled Task

Solution 9 - Windows 10

You can also simply edit the properties of each task (you don't have to change anything), hit ok, and you'll be prompted for your new password. "Conveniently", I didn't see a way to do all of them at once.

Solution 10 - Windows 10

We had the same problem with Windows 2012 server machines being cloned on a vmware ESX server. The clone/deployment script used sysprep to make every machine individual. With this the users assigned with the scheduled task got screwed up. Our solution was to re-generate the task via batchfile during startup of the machine:

REM Delete the task:
SCHTASKS /Delete /TN "NameOfScheduledTask" /f

REM Create a task to run every 5 minutes
SCHTASKS /Create /TN NameOfScheduledTask /SC MINUTE /MO 5 /TR "some command for task" /NP

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Questionmisha312View Question on Stackoverflow
Solution 1 - Windows 10JWBGView Answer on Stackoverflow
Solution 2 - Windows 10DJoView Answer on Stackoverflow
Solution 3 - Windows 10codyView Answer on Stackoverflow
Solution 4 - Windows 10Jesse JalbertView Answer on Stackoverflow
Solution 5 - Windows 10Jerry FinchView Answer on Stackoverflow
Solution 6 - Windows 10user1620090View Answer on Stackoverflow
Solution 7 - Windows 10Sugar BowlView Answer on Stackoverflow
Solution 8 - Windows 10Matt KempView Answer on Stackoverflow
Solution 9 - Windows 10daveView Answer on Stackoverflow
Solution 10 - Windows 10Florian StraubView Answer on Stackoverflow