Alright. Restart your computer and press on F8 before you boot in Windows (which means, right after your BIOS splash screen). Once in the Advanced Boot Options menu, select "Repair your computer". From there, click on the option to open the command prompt, and enter the command below:
This will bring you in the diskpart utility. From there, enter the command below to list your disks.
Select the disk (hard drive) where your Windows partition is using the following command, where X is the number associated with the disk where your Windows is located.
Code:
select disk X[/color]
From there, enter the command below to list all the partition on that disk, and write down the letter associated with your Windows partition.
[code]list partition
.
You can exit diskpart after that using the
exit command. Now in the command prompt, enter the following command:
Code:
DISM /image:X:\ /cleanup-image /revertpendingactions
Where X is the letter associated with your Windows partition (that you found while navigating diskpart).
Once done, restart your computer, and try to install your updates again.