meta data for this page
  •  
no way to compare when less than two revisions

Differences

This shows you the differences between two versions of the page.


windows:windows10:issues:0x80070643 [2024/05/19 10:07] (current) – created niziak
Line 1: Line 1:
 +====== 0x80070643 ======
  
 +[[https://www.bleepingcomputer.com/news/microsoft/windows-10-kb5034441-security-update-fails-with-0x80070643-errors/]]
 +
 +Solution: [[https://support.microsoft.com/en-us/topic/kb5028997-instructions-to-manually-resize-your-partition-to-install-the-winre-update-400faa27-9343-461c-ada9-24c8229763bf|KB5028997: Instructions to manually resize your partition to install the WinRE update]]
 +
 +<code shell>
 +reagentc /info
 +reagentc /disable
 +diskpart
 +  list disk
 +  sel disk 0
 +  list part
 +  sel part 2
 +    shrink desired=250 minimum=250
 +  sel part 3
 +    delete partition override
 +    create partition primary id=27
 +    format quick fs=ntfs label=”Windows RE tools”
 +    set id=27
 +  list vol
 +  exit
 +reagentc /enable
 +</code>