Facing Error 0x80070005 Windows 7 During Update

Asked By 0 points N/A Posted on -
qa-featured

I was updating my Windows, but it is displaying error 0x80070005 Windows 7. Please provide a method to solve the problem or some simple steps to resolve the error?

SHARE
Best Answer by Sharath Reddy
Answered By 0 points N/A #297535

Facing Error 0x80070005 Windows 7 During Update

qa-featured

It occurs when some registry permissions or file is missing.

Login as administrator

  1. Go to control panel
  2. Go to user accounts and family safety and click on user accounts
  3. Now, change the account type and log off from the system.
  4.  Try to install the updates; there will be no error

If the above method doesn’t solve the error:–

Scan the system for antivirus and malware; it is possible that some virus or malware is deleting or making changes in the file or registry permission.

Best Answer
Best Answer
Answered By 590495 points N/A #299929

Facing Error 0x80070005 Windows 7 During Update

qa-featured

The error code “0x80070005” is known also as “Access Denied.” This normally happens if you don’t have file or registry permission to install the update. To fix the problem, download the SubInACL Tool and install it. Once installed, launch Notepad then copy and paste the following:

@echo off

setlocal

echo.
echo Determine whether we are on an 32 or 64 bit machine
echo.

if “%PROCESSOR_ARCHITECTURE%”==”x86” if “%PROCESSOR_ARCHITEW6432%”==”” goto x86

set ProgramFilesPath=%ProgramFiles(x86)%

goto startResetting

:x86

set ProgramFilesPath=%ProgramFiles%

:startResetting

echo.

if exist “%ProgramFilesPath%\Windows Resource Kits\Tools\subinacl.exe” goto filesExist

echo ***ERROR*** – Could not find file %ProgramFilesPath%\Windows Resource Kits\Tools\subinacl.exe. Double-check that SubInAcl is correctly installed and re-run this script.
goto END

:filesExist

pushd “%ProgramFilesPath%\Windows Resource Kits\Tools”

subinacl.exe /subkeyreg HKEY_LOCAL_MACHINE /grant=administrators=f /grant=system=f
subinacl.exe /subkeyreg HKEY_CURRENT_USER /grant=administrators=f /grant=system=f
subinacl.exe /subkeyreg HKEY_CLASSES_ROOT /grant=administrators=f /grant=system=f
subinacl.exe /subdirectories %windir% /grant=administrators=f /grant=system=f

echo FINISHED.
echo.
echo Press any key to exit . . .
pause >NUL

popd

:END

endlocal

Save the file as “reset.cmd” then open Windows Explorer and right-click the file and select “Run as administrator.” Wait until the process is complete and then try installing the Windows Update again and see if it works.

Related Questions