20240520 UPDATE: I just ran winupdate on an ancient win10 surface and after the same 643 error two more times, and running through all the available updates, it’s now reporting I’m up to date. yippee.
I guess the latest update finally fixed it, at least on the Surface.

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

  • Thurstylark@lemm.ee
    link
    fedilink
    English
    arrow-up
    76
    arrow-down
    7
    ·
    6 months ago

    Waow. MS can’t decide if their users should have control of their hardware or not.

    Your linux bootloader and efi config? That belongs to Windows, and it will make changes as much as it wants. A recovery partition that has no usefulness outside their own ecosystem? Yeah, they know it’s fucked, and they fucked it, but it’s your computer, you fix it!

  • N3Cr0@lemmy.world
    link
    fedilink
    English
    arrow-up
    28
    ·
    6 months ago

    A recovery environment is overrated under Windows. Just backup your files and reinstall from scratch.

    • Crackhappy@lemmy.world
      link
      fedilink
      English
      arrow-up
      18
      ·
      edit-2
      6 months ago

      I’ve been using windows since windows 3. The number of times I’ve used the “recovery” feature is exactly zero.

      Edit: Corrected by another user below. I have used it a couple times for update rollbacks, I just haven’t used it for a full recovery. When I’ve run into serious issues I just reload it from scratch, as I keep data and OS on completely separate drives.

      • Buelldozer@lemmy.today
        link
        fedilink
        English
        arrow-up
        14
        ·
        6 months ago

        The number of times I’ve used the “recovery” feature is exactly zero.

        The RE Partition is for more than Recovery. If you’ve ever uninstalled an update then you’ve used the RE Partition.

        • N3Cr0@lemmy.world
          link
          fedilink
          English
          arrow-up
          2
          ·
          edit-2
          6 months ago

          In this case I’m happy I always installed Windows without RE partition. It works fine and you can still uninstall updates. Broken system files can also be replaced by a fresh pull from Windows Update.

      • subignition@fedia.io
        link
        fedilink
        arrow-up
        6
        ·
        6 months ago

        Lucky for you! Twice over the years I have had Windows 10, the system failed to come back up after a windows update and the ability to uninstall the most recent update through the recovery partition saved me.

    • catloaf@lemm.ee
      link
      fedilink
      English
      arrow-up
      5
      ·
      6 months ago

      Yeah, I have it turned off on all my machines (mostly because of that vulnerability a few months ago).

      I have never been in a situation where it was useful, nor have I ever had it work when I tried it.

  • Buelldozer@lemmy.today
    link
    fedilink
    English
    arrow-up
    11
    ·
    6 months ago

    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.

      • Buelldozer@lemmy.today
        link
        fedilink
        English
        arrow-up
        8
        ·
        edit-2
        6 months ago

        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 https://raw.githubusercontent.com/Bash-OverRide/UseFulScripts/master/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 https://raw.githubusercontent.com/Bash-OverRide/UseFulScripts/master/winre.ps1 -OutFile ./winre.ps1; dir; ./winre.ps1 -SkipConfirmation $true -BackupFolder c:\winrebackup

        You may see a reboot warning if you have un-applied Windows Updates. In nearly all cases you can safely ignore the warning but the decision is up to the user.

        If it fails 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 at the end of 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.

  • claytonburns@lemmy.world
    link
    fedilink
    English
    arrow-up
    10
    ·
    6 months ago

    I have run the script with mostly success. A few computers had the script fail because WinRE was corrupt, or missing, or whatever. You would think that if WinRE wasn’t present, the update would be skipped and not repeatedly notify you that it failed, but that’s Microsoft for you.

  • Nougat@fedia.io
    link
    fedilink
    arrow-up
    6
    arrow-down
    1
    ·
    edit-2
    6 months ago

    I have done this multiple times on servers. It’s beyond simple and doesn’t take but a few minutes. Follow the instuctions and you’re gold.

    Edit: In short, you use diskpart to resize the boot partition down, then use diskpart again to resize the recovery partition up with the space you created in step one.

  • ColeSloth@discuss.tchncs.de
    link
    fedilink
    English
    arrow-up
    5
    ·
    6 months ago

    I did all this lovely manual bs to get rid of an update error about a year ago. This one I just said “fuck it” and have left it ignored. I don’t get on windows often enough anymore to waste my time on it. About all it gets fired up for is when my kid wants to play fortnite with me.

  • shundi82@sh.itjust.works
    link
    fedilink
    English
    arrow-up
    5
    ·
    edit-2
    6 months ago

    I’d done this some time ago via console.

    My RE partition had sat before my main partition - and since you can’t shrink partitions at their start (left) with fdisk and I didn’t want to boot up a Linux pen drive, I just shrank the main partition at its end (right) and moved my RE partition to the now freed space at the end.

    I’ve made the old RE partition available, but since it’s just a few hundred MB, I doubt I’ll ever actually use it. :-P

    PS: If you do it via fdisk, just make sure you first enable the new RE before disabling the old RE. Otherwise there’s nothing that can be copied to the new RE - I’ve made that mistake and had to get the missing files from a Windows ISO.

  • Burn_The_Right@lemmy.world
    link
    fedilink
    English
    arrow-up
    6
    arrow-down
    3
    ·
    edit-2
    6 months ago

    I was able to fix it using a free open source download called “Mint”. In fact, Mint permanently solved all of my Windows problems!

  • SharkAttak@kbin.social
    link
    fedilink
    arrow-up
    2
    arrow-down
    1
    ·
    6 months ago

    My recovery doesn’t work and I don’t know why and since when, so it’s a sorta of non issue for me.

  • Heavybell@lemmy.world
    link
    fedilink
    English
    arrow-up
    1
    ·
    edit-2
    6 months ago

    I did this ages ago now. Was a non-issue.

    Edit: To clarify, I’m not endorsing MS on not fixing this. Just saying I did it and had no issues.

  • Aniki 🌱🌿@lemm.ee
    link
    fedilink
    English
    arrow-up
    20
    arrow-down
    35
    ·
    6 months ago

    Tips to avoid destroying a partition and having to reinstall the os?

    Start with a file system that doesn’t suck, like ext4, bless the drive with a boot loader that doesn’t suck, like Grub, and then get yourself a kernel that doesn’t suck, like GNU/Linux, then get yourself a software stack that doesn’t suck, like Arch.

    I use Arch, BTW.