sandrei1test
New member
- May 13, 2017
- 1
I recently have the Windows 8.1 update failing continuously at 98%.
The errors in C:\Windows\WindowsUpdate.log were:
The error in C:\Windows\Logs\CBS\CBS.log was:
I have two partitions of my disk and both of them have plenty of free space.
The error was due to the fact that the hidden recovery / MBR partition was full. I had to delete some files that were copied there by a tool I used to backup partitions.
Basically here are the steps I used:
- Input “cmd” into Windows search box and open the Command Prompt as an administrator.
- Then type “diskpart”.
- Type “list disk” command to list all your hard disks in the computer.
- Input “select disk n”, where is n is the number of the hard disk that the recovery partition on it.
- Type “list partition” to show all the partitions on the selected hard disk.
- Type “select partition m”, where m is the number of the recovery partition.
- Then type “assign”: the system will assign a drive letter automatically.
After these commands, you can see the recovery partition in Windows Explorer (try refresh if the partition is still not visible). You can see how much free space is left and, if necessary, do some cleaning (just make sure you know what you delete). In my case, I had 70 K free from a total of 350 M. Once I did the cleaning, it showed 290 M free.
Then you have to hide the recovery partition: basically the same as the steps of unhide, the only different is the last step: type “remove letter=e”, the e is the drive letter of the recovery partition.
After this, I was able to install the updates with no error.
The errors in C:\Windows\WindowsUpdate.log were:
Code:
[AU_SHUTDOWN_INSTALL_FAILED] 101 {F8C84DA5-5880-403A-B908-64E113527A12} 219 800f0922 AutomaticUpdates Failure Content Install Installation Failure: Windows failed to install the following update with error 0x800f0922
Code:
Error CSI 0000015d@2017/5/3:13:07:13.557 (F) base\wcp\plugins\bfsvc\bfsvc.cpp(218): Error HRESULT_FROM_WIN32(ERROR_DISK_FULL) originated in function Windows::WCP::Bfsvc::BasicInstaller::Install expression: HRESULT_FROM_WIN32(GetLastError())
[gle=0x80004005]
The error was due to the fact that the hidden recovery / MBR partition was full. I had to delete some files that were copied there by a tool I used to backup partitions.
Basically here are the steps I used:
- Input “cmd” into Windows search box and open the Command Prompt as an administrator.
- Then type “diskpart”.
- Type “list disk” command to list all your hard disks in the computer.
- Input “select disk n”, where is n is the number of the hard disk that the recovery partition on it.
- Type “list partition” to show all the partitions on the selected hard disk.
- Type “select partition m”, where m is the number of the recovery partition.
- Then type “assign”: the system will assign a drive letter automatically.
After these commands, you can see the recovery partition in Windows Explorer (try refresh if the partition is still not visible). You can see how much free space is left and, if necessary, do some cleaning (just make sure you know what you delete). In my case, I had 70 K free from a total of 350 M. Once I did the cleaning, it showed 290 M free.
Then you have to hide the recovery partition: basically the same as the steps of unhide, the only different is the last step: type “remove letter=e”, the e is the drive letter of the recovery partition.
After this, I was able to install the updates with no error.