Finally I've got a working solution, based on this tweet:
- Disable all antivirus tools (I've had no external tools beside the Windows-built-in, so nothing to do here for me).
- Follow the instructions in the KB article.
The KB article shows a script to run, after installing a MSI.
I've had to adjust the script since the Windows user group account administrators
is named administratoren
in my German Windows 8.1.
After running the adjusted script (for about 10-20 minutes), I've launched the Windows 10 setup again and it ran k.
I'm now writing this from my Windows 10 and seem to be happy.
Update
Since the Microsoft KB article seems to be removed, I've opened the Google Cache version of the KB article and copying the relevant information here.
From the KB article:
Error 0x80070005 in Windows Update when you try to install updates
Resolution
Error code 0x80070005 is also known as "ACCESS DENIED." It usually occurs when you lack file or registry permissions that are required to install the update. (Because file or registry permissions may be changed by malware, we recommend that you scan for malware after you repair the permissions.)
To resolve the issue, make sure that you are logged on as an administrator, and then install the updates again. If the problem continues, use the SubInACL tool to repair file and registry permissions. To do this, follow these steps:
Download the SubInACL tool (Mirror), and install it to the default path that is offered by the installer. The default path will be one of the following, depending on your version of Windows:
- %ProgramFiles%\Windows Resource Kits\Tools (32-bit versions of Windows)
- %ProgramFiles(x86)%\Windows Resource Kits\Tools (64-bit versions of Windows)
Start Notepad, and then copy and paste the following commands:
@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. (Super User note: English download, German download)
- Right-click the Reset.cmd file in File Explorer (in Windows 8.1 and Windows 8) or Windows Explorer (in Windows 7 and Windows Vista), and then click Run as administrator. In Windows XP, double-click the file in Windows Explorer.
- Wait until the execution finishes, and then try to install the update again.
Note If you receive errors when you run SubInAcl, see the following Microsoft blog: Notes about a couple of possible issues while using the SubInAcl tool.
1Can you provide that solution. Perhaps we can understand what the solution is given our greater knowledge as a whole. – Ramhound – 2015-07-29T11:26:14.303
Have you tried doing the upgrade using the .ISO by chance? The translated message basically indicates that is what you need to do.
– Ramhound – 2015-07-29T11:52:42.3731The 0x80070004 error occurred with the Windows 8.1 upgrade when the User folder was redirected from C:\ or the user profile was corrupt. May be something similar here. – David Marshall – 2015-07-29T11:55:00.803
1@DavidMarshall - Good Catch! I suspect that is indeed the problem. You need to move your user profile back to the system partition if you want to perform the upgrade. – Ramhound – 2015-07-29T11:58:40.203
My user profile is on the system partition (C:). – Uwe Keim – 2015-07-29T12:21:26.200
1
There is some stuff here that may or may not help http://answers.microsoft.com/en-us/insider/wiki/insider_wintp-insider_install/how-to-troubleshoot-common-setup-and-stop-errors/324d5a5f-d658-456c-bb82-b1201f735683. I've uninstalled anti-virus, stopped all startup programs in task manager and I'm burining the iso to a disc, rather than mounting it, and turned off wifi/lan. If it works I'll let everybody know.
– rashleighp – 2015-08-02T07:18:34.647What is your computer? I'm having the same problem on a tablet, and wondering if it has to do with the WIMBOOT tricks that are used. – Aleksandr Dubinsky – 2015-08-03T18:55:56.753
@bwDraco Thanks for translating. Changing even the error ID away from
0x80070004
sounds wrong to me. Can you explain, please? – Uwe Keim – 2017-02-15T06:07:03.1531@UweKeim: corrected, bad copy-paste. – bwDraco – 2017-02-15T06:08:00.793