user3138025
user3138025

Reputation: 825

How to solve a Windows 10 Scheduler error

I have several tasks in Windows 10 that have recently failed. I've made no recent changes to the server. The tasks were working fine for years, and then started failing in December of 2017. I have the Scheduler tasks configured to run on System Startup.
When I check the History tab, I see:

Task Start Failed error: Additional Data: Error Value: 2147943712.

The task/General Tab is configured as follows:

The user account is "Admin". That user has no password and is an administrator.

When I try to Run the task from the Selected Item / Run option, the scheduler logs the same error. Based on other posts, I've tried to edit the User Account, re-typing Admin and pressing the Check Names button. It shows the SERVERNAME\Admin, and does not prompt for a password.

How can I configure the task manager so that it does not produce this error?

Upvotes: 8

Views: 28843

Answers (2)

Sandeep Anand
Sandeep Anand

Reputation: 159

Regarding your error, try to take this measure. Hope this help.

To fix this up Change the following Registry key to value 0x0

HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Lsa 
Value Name: disabledomaincreds 
Value Type: REG_DWORD 
Values: 0 (allow domain credentials to be stored)

Upvotes: 7

Ferruccio
Ferruccio

Reputation: 100638

The error code returned (0x80070520 in hex) is "A specified logon session does not exist. It may already have been terminated."

According to this technet blog entry, the solution may be to disable the security policy which prevents local storage of passwords.

Upvotes: 3

Related Questions