Hi Va,
There's a new build 29648 out to day,
but that error is now listed as a Known Issue:
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hello Microsoft Support Team,
I am using Windows 11 Insider Preview, and a Windows update always fails to install with error 0x80070005 (Access Denied).
Hi Va,
There's a new build 29648 out to day,
but that error is now listed as a Known Issue:
Hi Khattab,
Please see my post, it's now a Known
Issue.
Hello Va Manet,
Error 0x80070005 means Windows Update was denied access to a required file, folder, or registry entry. However, the error alone does not show what caused the denial.
Before changing system permissions, please provide:
Also open PowerShell as administrator and run:
Get-WindowsUpdateLog
Open the WindowsUpdate.log file created on your desktop, search for 0x80070005, and share the relevant lines around the error. That should show whether this is a permissions issue, security-software interference, or a problem specific to the Insider build.
AI answer
Error 0x80070005 means the update process is being denied access to required files, folders, or related system resources. Common causes include incorrect permissions on %windir%\WinSxS or %windir%\SoftwareDistribution, interference from third-party antivirus or filter drivers, incorrect permissions under component servicing, or restricted write access from policy or management tools.
Use this sequence:
icacls "%windir%\WinSxS" /reset /t /c /q
icacls "%windir%\SoftwareDistribution" /reset /t /c /q
Restart, then try the update again.WinSxS:
icacls "%windir%\WinSxS" /setowner "NT SERVICE\TrustedInstaller" /t /c /q
Restart, then retry the update. net stop wuauserv
net stop bits
net stop cryptSvc
ren %windir%\SoftwareDistribution SoftwareDistribution.old
ren %windir%\System32\catroot2 catroot2.old
net start cryptSvc
net start bits
net start wuauserv
Restart and test again. DISM /Online /Cleanup-Image /RestoreHealth
By default, DISM uses Windows Update as the repair source. sfc /scannow
If SFC finds issues, complete the repair, restart, and retry the update. fltmc
If non-Microsoft filter drivers appear, temporarily unload one and test again:
fltmc unload <DriverName>
If there are multiple non-Microsoft filter drivers, repeat for each one.0x80070005 entries to confirm where access is being denied:
Get-WindowsUpdateLog
Also review WindowsUpdate.log or CBS.log for entries such as failed file creation or package access with E_ACCESSDENIED.For Insider Preview builds specifically, if standard repair steps have already been tried and the issue is affecting multiple Insider users, avoid making additional manual ACL or ownership changes beyond the documented steps. In that case, back up important files and wait for a follow-up Insider build if the failure appears build-related.