Windows error 0x800710E0, -2147020576

Detailed Error Information

REQUEST_REFUSED[1]

MessageThe operator or administrator has refused the request.
Declared inwinerror.h

HRESULT analysis[2]

FlagsSeverityFailure
Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode7 (0x007)
NameFACILITY_WIN32[2][1]
DescriptionThis region is reserved to map undecorated error codes into HRESULTs.[2][1]
Error Code4320 (0x10e0)

This is a Win32 error which has been mapped into an HRESULT. More information may be available in error 0x000010e0.

Questions

37votes
11answers

The operator or administrator has refused the request task scheduler

I have scheduled a C# console application in Task Scheduler of Windows 2012 R2. Application will run when executed it manually or Right click on scheduled task and click on Run, but it is failed when triggered by Task Scheduler with below error. > The operator or administrator has refused [...] read more
windows2012
taskscheduler
4votes
0answers

Scheduled Task won't run in Windows 10 when started by scheduler

I have a scheduled task to run a .CMD script at a set time each day. The Windows 10 64 bit system (1511) was clean installed, and the task was created manually. When the task's scheduled time is reached, it does not run. The Task Scheduler reports "The operator or [...] read more
windows-10
scheduled-tasks
3votes
0answers

Task Scheduler intermittent failure (Error Value: 2147943767)

In Windows 10, I have a Task in the Windows Task Scheduler that triggers at a certain time and also can run on demand. The Task comprises four Actions, each calling the same program with very similar options. Though the first of the four Actions will occasionally succeed, the Task [...] read more
windows
windows-10
scheduled-tasks
task-scheduler
2votes
0answers

NGEN is eating up all my disk space

For a couple months now I've woken up every couple days to find my C:\ drive out of space. After some digging I found my C:\Windows\Temp folder was full of 3MB log files -- ~40GB worth, numbering in the 10s of thousands. Reading through them they seem to have something [...] read more
windows-8.1
disk-space
visual-studio
.net-framework
windows-task-scheduler
1vote
0answers

Task Scheduler does not open Internet Explorer in Windows 10

I have a bat file that is scheduled to run every 15 Minutes with the Windows 10 Task Scheduler. At some point it has to open a local html file in Internet Explorer. START iexplore.exe -k C:\PATH\TO\FILE.html That works perfectly when executing manually or using the option only run when [...] read more
windows-10
scheduled-tasks
0votes
1answer

Scheduled task failing when being deployed by GPO on some PC's

I have scheduled a Task Scheduler using GPO (Windows 2012 R2). it failed when triggered by Task Scheduler with below error. > The operator or administrator has refused the request(0x800710E0) I have followed below steps also after Google search 1. Checked "Run whether user logged in or not" 2. Unchecked [...] read more
windows-7
windows
windows-10
scheduled-tasks
0votes
0answers

Sending reports at scheduled times

I'm trying to set up automated emailing of a few reports for my company and have a few questions after doing some research into it. So far I have the emailing portion finished and working of MS-Access where it will send emails containing two reports to whomever. I have also [...] read more
windows
batch-file
ms-access
scheduled-tasks
0votes
0answers

Error on running automated Tableau backup using TSM in Powershell

I am trying to automate Tableau backup in Windows. I am using Tableau 2019.1. As the new TSM command requires a password every time we do backup, what I did was I stored the password on another file and encrypt it, and call this file when I want to execute [...] read more
powershell
automation
tableau-api
-2votes
1answer

Task not working in Task Scheduler

I have a PowerShell script that restarts our SMTP service when it's down. It looks like this: $Computer = "localhost" $SMTPServiceName = "SMTPSVC" $AllServices = get-service -ComputerName $Computer $SMTPService foreach ($Service in $AllServices) { if ($Service.name -eq $SMTPServiceName) { $SMTPService = $Service break } } if ($SMTPService.status -eq "StopPending") { [...] read more
powershell
batch-file
taskscheduler

Comments

Leave a comment

(plain text only)

Sources

  1. winerror.h from Windows SDK 10.0.14393.0
  2. https://msdn.microsoft.com/en-us/library/cc231198.aspx

User contributions licensed under CC BY-SA 3.0