Skip to content
Scheduled Task

Scheduled Task

Scheduled Tasks

Scheduled tasks are managed in task scheduler


Find details of scheduled task via powershell: Run as admin:

  • Get-ScheduledTaskInfo -TaskName

Scheduled task error

If getting a scheduled task error “error 2147943712” it will be down to group policy settings denying the storage of the credentials.

Change the following reg key to allow this:

1
2
3
4
5
6
7
8
9
HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Lsa
Value Name: disabledomaincreds
Value Type: REG_DWORD
Values: 0 (allow domain credentials to be stored)

#script
# Run PowerShell as an Administrator
# Set the value of the registry key
Set-ItemProperty -Path HKLM:\System\CurrentControlSet\Control\Lsa -Name "disabledomaincreds" -Value 0 -Type DWord