Am I the only one ?
Error code: 0x80070643
Any idea?
Is it possibly Win Privacy or OOshutup10 related ?
It´s the 1st time Win10 security update doesn´t work here,- laptop and desktop machine.

Bud
Open a Command Prompt window (cmd) as admin.
To check the WinRE status, run reagentc /info. If the WinRE is installed, there should be a “Windows RE location” with a path to the WinRE directory. An example is, “Windows RE location: [file://%3f/GLOBALROOT/device/harddisk0/partition4/Recovery/WindowsRE]\\?\GLOBALROOT\device\harddisk0\partition4\Recovery\WindowsRE.” Here, the number after “harddisk” and “partition” is the index of the disk and partition WinRE is on.
To disable the WinRE, run reagentc /disable
Shrink the OS partition and prepare the disk for a new recovery partition.
To shrink the OS, run diskpart
Run list disk
To select the OS disk, run sel disk<OS disk index> This should be the same disk index as WinRE.
To check the partition under the OS disk and find the OS partition, run list part
To select the OS partition, run sel part<OS partition index>
Run shrink desired=768 minimum=768 (this is if your WinRE partition is 512MB, if it's closer to 800 you can use shrink/desired value 512, etc)
To select the WinRE partition, run sel part<WinRE partition index>
To delete the WinRE partition, run delete partition override
Create a new recovery partition.
First, check if the disk partition style is a GUID Partition Table (GPT) or a Master Boot Record (MBR). To do that, run list disk. Check if there is an asterisk character (*) in the “Gpt” column. If there is an asterisk character (*), then the drive is GPT. Otherwise, the drive is MBR.
If your disk is GPT, run create partition primary id=de94bba4-06d1-4d40-a16a-bfd50179d6ac followed by the command gpt attributes =0x8000000000000001
If your disk is MBR, run create partition primary id=27
To format the partition, run format quick fs=ntfs label=”WindowsRE” (or label="Windows RE tools")
To confirm that the WinRE partition is created, run list vol
To exit from diskpart, run exit
To re-enable WinRE, run reagentc /enable
To confirm where WinRE is installed, run reagentc /info
Note If creation failed or you did not want to extend the WinRE partition, run reagentc /enable to re-enable WinRE.
Good to know !!!valis wrote: Fri Jan 12, 2024 5:25 am No because you need to tag this partition with a specific GUID when making it, and the commands aren’t hard as given. Just make sure you don’t have two recovery partitions or it may still fail due to the smaller one.
Yes, to the latter.valis wrote: Tue Jan 30, 2024 5:52 am Alignment isn’t a concern like it was in the XP era. It means that’s where the partition starts.
Keep in mind OEM systems will have a partition supported by BIOS operations to wipe and reinstall Windows, this is separate from the MS Recovery image and will take you back to the state the machine shipped in. The MS Recovery image is updated to the current version of Windows—which is why this new update is once again larger than previously allocated recovery space sizes.
This whole thread assumes you built your machines, or can handle a USB windows installer without the need for OEM operations.