Microsoft won't fix Windows 0x80070643 errors, manual fix required

https://lemmy.world/post/14978458

Microsoft won't fix Windows 0x80070643 errors, manual fix required - Lemmy.World

Anyone tried and succeeded? Not too awful plodding through the resizing? Tips to avoid destroying a partition?

Anyone tried and succeeded?

Shiiit, I have a powershell script for this. Takes 90 seconds or less to fix it on systems with an SSD. Takes 2-3 minutes on HDD systems. I’ve done hundreds of times since the January 2024 update.

Care to share?

You can literally copy / paste either of these commands into an elevated Powershell session. They create the directories needed, go fetch the script from Github, then execute it with the necessary arguments. I’ve run this on Windows 10, Windows 11, and all Windows Server versions from 2016 through 2022.

This is a “Confirmation” version. It will stop and prompt you before actually changing anything.

[System.IO.Directory]::CreateDirectory(“C:\winrebackup”); [System.IO.Directory]::CreateDirectory(“C:\tcmds”); cd c:\tcmds; Invoke-WebRequest -Uri raw.githubusercontent.com/…/winre.ps1 -OutFile ./winre.ps1; dir; ./winre.ps1 -BackupFolder c:\winrebackup

This is a “No Confirmation” version. If the WinRE partition needs expanded it will just do it.

[System.IO.Directory]::CreateDirectory(“C:\winrebackup”); [System.IO.Directory]::CreateDirectory(“C:\tcmds”); cd c:\tcmds; Invoke-WebRequest -Uri raw.githubusercontent.com/…/winre.ps1 -OutFile ./winre.ps1; dir; ./winre.ps1 -SkipConfirmation $true -BackupFolder c:\winrebackup

If either of them fail with an error about insufficient space to resize the partition and your storage isn’t full then it’s likely that you have immovable files in the primary partition. Turn off Hibernation and System Restore, which will remove those files, then reboot and try again. Remember to turn Hiberation and / or System Restore back on when done. I’ve only seen that happen a couple of times which is why it’s not scripted in, just wasn’t worth the effort.