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.

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.
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 "Some settings are managed by your organization" when not domain-joined
Possible Causes
- Insufficient user permissions for Windows Update components
- Corrupted Windows Update service files or registry entries
- Antivirus software blocking update processes
- Damaged system files preventing proper update installation
- Group Policy restrictions interfering with update mechanisms
- Windows Update cache corruption in SoftwareDistribution folder
1Run Windows Update Troubleshooter
Run Windows Update Troubleshooter
Microsoft's built-in troubleshooter automatically detects and fixes common Windows Update issues including permission problems.
- Press Windows + I to open Settings
- Navigate to System → Troubleshoot → Other troubleshooters
- Locate Windows Update and click Run
- Allow the troubleshooter to scan for issues (this takes 2-5 minutes)
- Follow any recommended actions presented by the troubleshooter
- Restart your computer when prompted
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 stops Windows Update services, clears the update cache, and restarts services with proper permissions.
- Press Windows + X and select 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 Command Prompt and restart your computer
Verification: Check Windows Update again. The system will recreate the folders and download fresh update metadata.
3Run System File Checker and DISM
Run System File Checker and DISM
Corrupted system files often cause permission errors. SFC and DISM repair these files using Windows component store.
- Open Terminal (Admin) from the Windows + X menu
- Run System File Checker to scan for corrupted files:
sfc /scannow- Wait for the scan to complete (15-30 minutes). If SFC finds issues, run DISM to repair the component store:
DISM /Online /Cleanup-Image /RestoreHealth- After DISM completes, run SFC again to ensure all files are repaired:
sfc /scannow- Restart your computer and test Windows Update
C:\Windows\Logs\CBS\CBS.log for detailed information about what SFC repaired.Verification: Run sfc /verifyonly to confirm system integrity, then check Windows Update functionality.
4Fix Registry Permissions and Group Policy
Fix Registry Permissions and Group Policy
Incorrect registry permissions or Group Policy settings can block Windows Update access. This method resets these configurations.
regedit, then File → Export.- Press Windows + R, type
gpedit.msc, and press Enter - Navigate to Computer Configuration → Administrative Templates → Windows Components → Windows Update
- Double-click Configure Automatic Updates and set it to Not Configured
- Repeat for Specify intranet Microsoft update service location and Remove access to use all Windows Update features
- Close Group Policy Editor and open Terminal (Admin)
- Reset Windows Update registry permissions:
takeown /f C:\Windows\SoftwareDistribution /r /d y
icacls C:\Windows\SoftwareDistribution /grant administrators:F /t- Force Group Policy update:
gpupdate /force- Restart your computer
Verification: Check if the "Some settings are managed by your organization" message disappears from Windows Update settings.
5Recreate Windows Update Database
Recreate Windows Update Database
When other methods fail, completely rebuilding the Windows Update database often resolves persistent 0x80070005 errors.
- Boot into Safe Mode: Hold Shift while clicking Restart, then Troubleshoot → Advanced options → Startup Settings → Restart → Press 4
- Open Terminal (Admin) in Safe Mode
- Stop all Windows Update related services:
net stop wuauserv
net stop cryptSvc
net stop bits
net stop msiserver
net stop dosvc- Delete the Windows Update database and cache:
del /f /s /q C:\Windows\SoftwareDistribution\*.*
rmdir /s /q C:\Windows\SoftwareDistribution
rmdir /s /q C:\Windows\System32\catroot2- Re-register Windows Update DLL files:
regsvr32 wuapi.dll
regsvr32 wuaueng.dll
regsvr32 wuaueng1.dll
regsvr32 wucltui.dll
regsvr32 wups.dll
regsvr32 wups2.dll
regsvr32 wuweb.dll- Restart services and reboot normally:
net start wuauserv
net start cryptSvc
net start bits
net start msiserver- Restart your computer normally
Verification: Windows will rebuild the update database on first check. This process may take 10-15 minutes.
Verification
After applying any solution method, verify the fix by opening Settings → Windows Update and clicking Check for updates. The system should begin checking without displaying error 0x80070005. Additionally, run Get-WindowsUpdateLog in PowerShell to generate a readable update log at C:\Users\%USERNAME%\Desktop\WindowsUpdate.log and confirm no access denied errors appear in recent entries.
Still Having Issues?
If the above methods didn't resolve error 0x80070005, try these advanced alternatives: Create a new local administrator account and test Windows Update from that profile to isolate user-specific permission issues. Run sfc /scannow from Windows Recovery Environment if system file corruption persists. Check antivirus logs for blocked Windows Update processes and temporarily disable real-time protection during updates. For enterprise environments, verify that Windows Update for Business policies aren't conflicting with local update attempts. As a last resort, consider using the Windows 11 Media Creation Tool to perform an in-place upgrade repair, which preserves files while refreshing system components.
Frequently Asked Questions
What does Windows Update error 0x80070005 mean exactly?
Why does this error happen more frequently on Windows 11 than Windows 10?
Can antivirus software cause Windows Update error 0x80070005?
Is it safe to delete the SoftwareDistribution folder to fix this error?
How can I prevent Windows Update error 0x80070005 from recurring?
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 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.