0X000010E0

Fix ERROR_REQUEST_REFUSED (0x10E0) – Operator Refused

Windows Errors Intermediate 👁 1 views 📅 May 28, 2026

This error means Windows or the app says a user or admin denied a request. Usually it's a permissions or group policy issue, not a hardware problem.

1. User Account Control or Group Policy Blocking the Request

Nine times out of ten, this error shows up because Windows User Account Control (UAC) or a local/domain group policy is literally refusing the operation. I’ve seen this on a client’s Windows 11 Pro machine where they couldn't run a PowerShell script that needed admin rights—the script would instantly pop ERROR_REQUEST_REFUSED (0x10E0). The real fix here is either running the thing as administrator or adjusting the policy that’s blocking it.

Fix 1: Run the application as administrator

Right-click the program, shortcut, or script and select "Run as administrator." If that works, the issue is UAC elevation. For scheduled tasks or services, set them to run with the highest privileges in Task Scheduler.

Fix 2: Check local group policy

If running as admin doesn’t work, Group Policy is probably blocking the action. Open gpedit.msc (Pro/Enterprise only) and navigate to:

Computer Configuration → Windows Settings → Security Settings → Local Policies → User Rights Assignment

Look for policies like “Deny log on locally” or “Deny access to this computer from the network.” If your user or group is listed there, remove it. I had a client last month whose IT admin accidentally added the "Users" group to “Deny log on through Remote Desktop Services”—caused this error for everyone trying to RDP in.

Fix 3: Domain group policy override

If you’re on a domain, the domain controller’s policy might be overriding local settings. Run rsop.msc to see the effective policy. If a domain policy is blocking, you’ll need your domain admin to adjust it. No workaround on your end.

2. Printer or Peripheral Device Refusing the Request

Second most common cause I see: a printer or other device that’s got its own internal security or a driver that’s gone haywire. The error will pop when trying to print, scan, or send a command to the device. The device itself says “nope.”

Fix 1: Check printer’s admin settings

Many network printers (HP, Brother, Canon) have a web interface or control panel that lets you block jobs from certain users. Log into the printer’s IP address in a browser, go to Security or Job Accounting, and see if your user is blocked. I once spent an hour on a client’s HP LaserJet because someone had enabled “Secure Print” for all jobs—every print job got refused with this error until they disabled that setting.

Fix 2: Reinstall the printer driver

Corrupt drivers can also trigger this. Go to Devices and Printers, right-click the printer, select Remove device, then re-add it. Use the manufacturer’s latest driver from their website, not Windows Update. The built-in drivers often lack full functionality.

Fix 3: USB or port permissions

For USB devices, Windows might refuse access if the device driver is set to “Deny” for your user. Open Device Manager, find the device, right-click → Properties → Security tab. Make sure your user or group has Allow for “Read” and “Write.” If the Security tab is missing, you’re on a Home edition—use Safe Mode or a different workaround.

3. Remote Desktop or Network Share Access Denied

This one’s common in business environments. You try to RDP into a machine or access a shared folder, and bam—0x10E0. The remote machine’s security settings are refusing your connection.

Fix 1: Remote Desktop user permissions

On the target machine, open System Properties → Remote tab → Select Users. Add your user account there. Also check that the Remote Desktop service is running (services.msc → look for “Remote Desktop Services”). If the service is stopped, start it and set it to Automatic.

Fix 2: Network share permissions vs. NTFS permissions

For file shares, two layers of permissions exist. The share permissions might allow “Everyone” but the NTFS permissions on the folder might block you. Right-click the shared folder → Properties → Security tab → Advanced → check for deny entries. Remove any that block your user. Then check the Sharing tab → Advanced Sharing → Permissions. Both must allow you.

Fix 3: Firewall or security software

Third-party antivirus or firewall software often blocks RDP or file sharing ports (3389 for RDP, 445 for SMB). Temporarily disable it to test. If it fixes it, add an exception for the program or port. Windows Defender Firewall shouldn’t block it by default, but if it’s misconfigured, reset it: netsh advfirewall reset (run as admin).

Quick-Reference Summary

CauseFixCheck First
UAC/Group PolicyRun as admin, edit gpedit.msc, check domain policyIs the app running elevated?
Printer/DeviceCheck device admin, reinstall driver, fix USB permissionsDoes the printer web interface show your user blocked?
Remote Desktop/ShareAdd user to RDP group, check NTFS & share permissions, disable firewall temporarilyCan you RDP locally?

If none of these work, run sfc /scannow and dism /online /cleanup-image /restorehealth to rule out system file corruption. But honestly, in my 15 years of IT, this error is almost always a permission or policy issue—never a corrupt file.

Was this solution helpful?