ANAVEM
Reference
Languagefr
Fix Windows Update Error 0x80070005 – Access Denied 2026
Fix Guide0x80070005Windows Update

Fix Windows Update Error 0x80070005 – Access Denied 2026

Windows Update error 0x80070005 occurs when the system lacks proper permissions to access update files or registry keys. This comprehensive guide provides five proven methods to resolve access denied errors during Windows updates.

Emanuel DE ALMEIDA
3/13/2026 4
Instant Solution

Run Windows Update Troubleshooter from SettingsSystemTroubleshootOther troubleshootersWindows Update. If that fails, run sfc /scannow in an elevated Command Prompt to repair system files and reset Windows Update permissions.

Understanding Windows Update Error 0x80070005

Error 0x80070005 is one of the most common Windows Update failures, indicating an "Access Denied" condition that prevents the system from installing updates. This error typically occurs when Windows lacks proper permissions to access critical update files, registry keys, or system directories required for the installation process.

As a senior systems engineer who has resolved this issue across thousands of enterprise deployments, I can confirm that 0x80070005 errors have become more prevalent since the Windows 10 feature update model introduced more complex permission requirements for system modifications.

Quick Fix Summary

Run Windows Update Troubleshooter from SettingsSystemTroubleshootOther troubleshootersWindows Update. If that fails, run sfc /scannow in an elevated Command Prompt to repair system files and reset Windows Update permissions.

Symptoms of Error 0x80070005

  • Windows Update fails with error code 0x80070005
  • "Access is denied" message appears during update installation
  • Updates download but fail to install
  • Windows Update service stops responding
  • System shows "We couldn't complete the updates" message on restart
  • Update history shows failed installations with 0x80070005 error

Root Causes

  • Corrupted Windows Update components or system files
  • Insufficient permissions on Windows Update folders or registry keys
  • Third-party antivirus software blocking update processes
  • Windows Update service running under incorrect user context
  • Damaged user profile or security token corruption
  • Registry corruption affecting Windows Update permissions

Solution Methods

Method 1: Run Windows Update Troubleshooter

Windows 11 and Windows 10 include a built-in troubleshooter that can automatically detect and fix common update issues including permission problems.

  1. Press Windows + I to open Settings
  2. Navigate to SystemTroubleshootOther troubleshooters
  3. Locate Windows Update and click Run
  4. Wait for the troubleshooter to scan and detect issues
  5. Follow any recommended actions presented by the troubleshooter
  6. Restart your computer when prompted
  7. Test Windows Update by checking for updates manually

Verification: Open SettingsWindows Update and click Check for updates. The error should no longer appear.

Method 2: Reset Windows Update Components

This method manually resets all Windows Update components and clears the update cache, which often resolves permission-related issues.

  1. Press Windows + X and select Windows Terminal (Admin)
  2. Stop Windows Update services by running these commands:
net stop wuauserv
net stop cryptSvc
net stop bits
net stop msiserver
  1. Rename the SoftwareDistribution and catroot2 folders:
ren C:\Windows\SoftwareDistribution SoftwareDistribution.old
ren C:\Windows\System32\catroot2 catroot2.old
  1. Restart the Windows Update services:
net start wuauserv
net start cryptSvc
net start bits
net start msiserver
  1. Close the command prompt and restart your computer
  2. Check for Windows Updates to test the fix

Verification: Run Get-Service wuauserv,cryptsvc,bits,msiserver in PowerShell to confirm all services are running.

Method 3: Run System File Checker and DISM

Corrupted system files can cause permission errors during Windows Updates. SFC and DISM tools repair these files and restore proper system integrity.

  1. Open Windows Terminal (Admin) from the Start menu
  2. Run System File Checker to scan and repair corrupted files:
sfc /scannow
  1. Wait for the scan to complete (this may take 15-30 minutes)
  2. Run DISM to repair the Windows image:
DISM /Online /Cleanup-Image /RestoreHealth
  1. After DISM completes, run SFC again to ensure all issues are resolved:
sfc /scannow
  1. Restart your computer and test Windows Update
Pro tip: If DISM fails to download repair files, use a Windows installation media as the source: DISM /Online /Cleanup-Image /RestoreHealth /Source:D:\Sources\install.wim

Verification: Check the SFC log at C:\Windows\Logs\CBS\CBS.log for "Windows Resource Protection did not find any integrity violations" message.

Method 4: Reset Windows Update Permissions

This method manually resets file and registry permissions for Windows Update components, addressing the core cause of access denied errors.

  1. Download and run the Windows Update Reset PowerShell script or manually reset permissions
  2. Open Windows Terminal (Admin)
  3. Reset permissions on the SoftwareDistribution folder:
takeown /f C:\Windows\SoftwareDistribution /r /d y
icacls C:\Windows\SoftwareDistribution /grant administrators:F /t
  1. Reset permissions on the Windows Update registry keys:
reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate" /v "DisableWindowsUpdateAccess" /t REG_DWORD /d 0 /f
  1. Reset the Windows Update Agent by running the component registration commands
  2. Restart the computer and test Windows Update
Warning: Always create a system restore point before modifying registry permissions.

Verification: Check folder permissions by right-clicking C:\Windows\SoftwareDistributionPropertiesSecurity and confirm SYSTEM and Administrators have Full Control.

Method 5: Create New User Profile and Advanced Registry Fix

If previous methods fail, the issue may be related to user profile corruption or deep registry problems requiring advanced intervention.

  1. Create a new local administrator account using PowerShell
  2. Log out and sign in with the new account
  3. Test Windows Update from the new profile
  4. If updates work, the original profile is corrupted
  5. Use Registry Editor to reset Windows Update registry keys
  6. Apply advanced PowerShell commands to reset update policies
  7. Test updates from both user accounts

Verification: Run Get-WindowsUpdateLog in PowerShell to generate a readable update log and check for permission errors.

Verification Steps

To confirm the fix worked properly, perform these verification steps:

  1. Open SettingsWindows Update and click Check for updates
  2. Verify that updates download and install without error 0x80070005
  3. Run PowerShell commands to check service status and update logs
  4. Verify system file integrity with SFC verification
  5. Confirm no pending reboots are required for updates

Advanced Troubleshooting

If the above methods didn't resolve error 0x80070005, try these advanced troubleshooting steps including checking antivirus interference, booting into Safe Mode, using Media Creation Tool for in-place upgrades, ensuring adequate disk space, resetting Windows Security, and manual update installation through Microsoft Update Catalog.

System Symptoms

  • Windows Update fails with error code 0x80070005
  • "Access is denied" message appears during update installation
  • Updates download but fail to install
  • Windows Update service stops responding
  • System shows "We couldn't complete the updates" message on restart
  • Update history shows failed installations with 0x80070005 error

Frequently Asked Questions

What does Windows Update error 0x80070005 mean exactly?+
Error 0x80070005 translates to "Access Denied" in Windows terminology. It occurs when the Windows Update process lacks sufficient permissions to access critical system files, registry keys, or folders required for installing updates. This can happen due to corrupted permissions, damaged system files, or security software interference blocking the update process.
Why does error 0x80070005 happen more frequently on Windows 11?+
Windows 11 implements stricter security measures and enhanced permission controls compared to previous versions. The new security model, including features like VBS (Virtualization-based Security) and enhanced Windows Defender integration, can sometimes conflict with update processes. Additionally, Windows 11's more frequent feature updates require broader system access, increasing the likelihood of permission conflicts.
Can third-party antivirus software cause error 0x80070005?+
Yes, third-party antivirus software is a common cause of error 0x80070005. Real-time protection features may block Windows Update from accessing system files or registry keys, interpreting the update process as potentially malicious activity. Popular antivirus solutions like Norton, McAfee, and Kaspersky have been known to cause this issue. Temporarily disabling real-time protection during updates often resolves the problem.
Is it safe to manually reset Windows Update permissions using the registry?+
Manually resetting Windows Update permissions is generally safe when following proper procedures, but it requires administrative expertise. Always create a system restore point before making registry changes. The commands provided in Method 4 are tested and safe, but incorrect registry modifications can cause system instability. If you're uncomfortable with registry editing, use the built-in Windows Update Troubleshooter or reset tools instead.
How can I prevent error 0x80070005 from recurring in the future?+
To prevent future occurrences: 1) Keep Windows Defender updated and avoid conflicting antivirus software, 2) Run monthly SFC and DISM scans to maintain system file integrity, 3) Ensure adequate free disk space (minimum 20GB), 4) Install updates promptly rather than deferring them, 5) Avoid modifying Windows Update registry keys manually, and 6) Use standard user accounts for daily tasks while keeping an administrator account for system maintenance.
Emanuel DE ALMEIDA
Written by

Emanuel DE ALMEIDA

Microsoft MCSA-certified Cloud Architect | Fortinet-focused. I modernize cloud, hybrid & on-prem infrastructure for reliability, security, performance and cost control - sharing field-tested ops & troubleshooting.

Discussion

Share your thoughts and insights

You must be logged in to comment.

Loading comments...