Run Windows Update Troubleshooter from Settings → System → Troubleshoot → Other troubleshooters → Windows Update. If that fails, run sfc /scannow in an elevated Command Prompt to repair system files and reset Windows Update permissions.

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.
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
Possible 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
1Run Windows Update Troubleshooter
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.
- Press Windows + I to open Settings
- Navigate to System → Troubleshoot → Other troubleshooters
- Locate Windows Update and click Run
- Wait for the troubleshooter to scan and detect issues
- Follow any recommended actions presented by the troubleshooter
- Restart your computer when prompted
- Test Windows Update by checking for updates manually
Verification: Open Settings → Windows Update and click Check for updates. The error should no longer appear.
2Reset Windows Update Components
Reset Windows Update Components
This method manually resets all Windows Update components and clears the update cache, which often resolves permission-related issues.
- Press Windows + X and select Windows Terminal (Admin)
- Stop Windows Update services by running these commands:
net stop wuauserv
net stop cryptSvc
net stop bits
net stop msiserver- Rename the SoftwareDistribution and catroot2 folders:
ren C:\Windows\SoftwareDistribution SoftwareDistribution.old
ren C:\Windows\System32\catroot2 catroot2.old- Restart the Windows Update services:
net start wuauserv
net start cryptSvc
net start bits
net start msiserver- Close the command prompt and restart your computer
- Check for Windows Updates to test the fix
Verification: Run Get-Service wuauserv,cryptsvc,bits,msiserver in PowerShell to confirm all services are running.
3Run System File Checker and DISM
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.
- Open Windows Terminal (Admin) from the Start menu
- Run System File Checker to scan and repair corrupted files:
sfc /scannow- Wait for the scan to complete (this may take 15-30 minutes)
- Run DISM to repair the Windows image:
DISM /Online /Cleanup-Image /RestoreHealth- After DISM completes, run SFC again to ensure all issues are resolved:
sfc /scannow- Restart your computer and test Windows Update
DISM /Online /Cleanup-Image /RestoreHealth /Source:D:\Sources\install.wimVerification: Check the SFC log at C:\Windows\Logs\CBS\CBS.log for "Windows Resource Protection did not find any integrity violations" message.
4Reset Windows Update Permissions
Reset Windows Update Permissions
This method manually resets file and registry permissions for Windows Update components, addressing the core cause of access denied errors.
- Download and run the Windows Update Reset PowerShell script or manually reset permissions
- Open Windows Terminal (Admin)
- Reset permissions on the SoftwareDistribution folder:
takeown /f C:\Windows\SoftwareDistribution /r /d y
icacls C:\Windows\SoftwareDistribution /grant administrators:F /t- Reset permissions on the Windows Update registry keys:
reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate" /v "DisableWindowsUpdateAccess" /t REG_DWORD /d 0 /f- Reset the Windows Update Agent by running:
regsvr32 /s atl.dll
regsvr32 /s urlmon.dll
regsvr32 /s mshtml.dll
regsvr32 /s shdocvw.dll
regsvr32 /s browseui.dll
regsvr32 /s jscript.dll
regsvr32 /s vbscript.dll
regsvr32 /s scrrun.dll
regsvr32 /s msxml.dll
regsvr32 /s msxml3.dll
regsvr32 /s msxml6.dll
regsvr32 /s actxprxy.dll
regsvr32 /s softpub.dll
regsvr32 /s wintrust.dll
regsvr32 /s dssenh.dll
regsvr32 /s rsaenh.dll
regsvr32 /s gpkcsp.dll
regsvr32 /s sccbase.dll
regsvr32 /s slbcsp.dll
regsvr32 /s cryptdlg.dll
regsvr32 /s oleaut32.dll
regsvr32 /s ole32.dll
regsvr32 /s shell32.dll
regsvr32 /s initpki.dll
regsvr32 /s wuapi.dll
regsvr32 /s wuaueng.dll
regsvr32 /s wuaueng1.dll
regsvr32 /s wucltui.dll
regsvr32 /s wups.dll
regsvr32 /s wups2.dll
regsvr32 /s wuweb.dll
regsvr32 /s qmgr.dll
regsvr32 /s qmgrprxy.dll
regsvr32 /s wucltux.dll
regsvr32 /s muweb.dll
regsvr32 /s wuwebv.dll- Restart the computer and test Windows Update
Verification: Check folder permissions by right-clicking C:\Windows\SoftwareDistribution → Properties → Security and confirm SYSTEM and Administrators have Full Control.
5Create New User Profile and Advanced Registry Fix
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.
- Create a new local administrator account:
New-LocalUser -Name "TempAdmin" -Password (ConvertTo-SecureString "TempPass123!" -AsPlainText -Force) -FullName "Temporary Administrator"
Add-LocalGroupMember -Group "Administrators" -Member "TempAdmin"- Log out and sign in with the new account
- Test Windows Update from the new profile
- If updates work, the original profile is corrupted. If not, proceed with advanced registry fixes:
- Open Registry Editor and navigate to:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update- Delete any corrupted values and recreate the default structure
- Navigate to and reset permissions on:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update\RebootRequired- Use PowerShell to reset Windows Update policies:
Remove-Item "HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate" -Recurse -Force -ErrorAction SilentlyContinue
Restart-Service wuauserv -Force- Run Windows Update Standalone Installer for critical updates:
wusa.exe /uninstall /kb:XXXXXXX /quiet /norestart- Restart and test updates from both the new and original user accounts
Verification: Run Get-WindowsUpdateLog in PowerShell to generate a readable update log and check for permission errors.
Verification
To confirm the fix worked properly, perform these verification steps:
- Open Settings → Windows Update and click Check for updates
- Verify that updates download and install without error 0x80070005
- Run this PowerShell command to check Windows Update service status:
Get-Service wuauserv,cryptsvc,bits | Select-Object Name,Status,StartType- Check the Windows Update log for errors by running:
Get-WindowsUpdateLog- Verify system file integrity with:
sfc /verifyonly - Confirm no pending reboots are required for updates
Still Having Issues?
If the above methods didn't resolve error 0x80070005, try these advanced troubleshooting steps:
- Check antivirus interference: Temporarily disable real-time protection and Windows Defender to test if security software is blocking updates
- Boot into Safe Mode: Restart in Safe Mode with Networking and attempt Windows Update to isolate driver or service conflicts
- Use Media Creation Tool: Download the latest Windows 11/10 ISO and perform an in-place upgrade to repair system components
- Check disk space: Ensure at least 20GB free space on the system drive for update installation
- Reset Windows Security: Run
Get-AppxPackage Microsoft.SecHealthUI -AllUsers | Reset-AppxPackageto reset Windows Security app - Manual update installation: Download updates directly from Microsoft Update Catalog and install using DISM or Windows Update Standalone Installer
For persistent issues, consider using the Windows 11/10 Reset option while keeping personal files, or contact Microsoft Support for advanced diagnostics.
Frequently Asked Questions
What does Windows Update error 0x80070005 mean exactly?
Why does error 0x80070005 happen more frequently on Windows 11?
Can third-party antivirus software cause error 0x80070005?
Is it safe to manually reset Windows Update permissions using the registry?
How can I prevent error 0x80070005 from recurring in the future?
Which method worked?
Vote to help others
Official Resources
Discussion
Share your thoughts and insights
You must be logged in to comment.
Related Fix Guides

Fix Windows Error 0x8024402c – Windows 10/11 2026
Windows Update error 0x8024402c occurs when the update service cannot connect to Microsoft servers due to network issues, proxy settings, or corrupted update components.

Fix Windows KB5004945 Update Error – Windows 10, Windows 11 2026
KB5004945 update installation fails due to corrupted system files, insufficient disk space, or Windows Update service conflicts. Primary fix involves running SFC scan and resetting Windows Update components.

Fix Windows Error 0x8024000C – Windows 10, Windows 11 2026
Windows error 0x8024000C indicates a Windows Update service communication failure. This comprehensive guide provides step-by-step solutions to resolve update download and installation issues on Windows 10 and Windows 11 systems.

Fix Windows Update Error 0x80070005 – Access Denied 2026
Windows Update error 0x80070005 indicates insufficient permissions or corrupted system files preventing update installation. This comprehensive guide provides proven solutions to restore update functionality.