7
votes

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:

  • Run whether user is logged on or not
  • Do not store password.
  • Run with highest privileges
  • Configure for Windows 10

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?

2
Have you tried assigning a password to the acct...I'd suspect having an account with no password and trying to run jobs with it is the problemCtznkane525
This looks like a general computing question, not a programming question - it should be on superuser.com insteadDavidW

2 Answers

2
votes

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.

-1
votes

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)