frustrating update of KB5034441

Anonymous
2024-01-22T08:05:38+00:00

Microsoft has released a frustrating update of KB5034441 which can not be installed by a common user in any means. it needs to expand the virtual memory in a very technical and the professional way. can anybody help how to install it in any easy way ? or how to permanently by pass this frustrating update? i am using windows 10 pro ver 22h2 infact the worst one of the entire win 10 history because :
ms security is down since last 8 months & there chat helpline and all over the forum has failed to resolve it. microsoft told me that they are not even aware of this. windows security was going auto down, any how i ve purchased a extremely expensive software to fix that.. now ms launched another prb which i ve been asking for a fix. they ve charged me for win 10 pro and after couple of years failed their security in the windows..anyhow.. about KB5034441 any fix ?

Windows for home | Windows 10 | Windows update

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

321 answers

Sort by: Most helpful
  1. Anonymous
    2024-05-12T16:29:20+00:00

    Hello **** mcbarker69

    Microsoft cannot remove this update because it is necessary for users who use Bitlocker.

    For users who don't use Bitlocker, they can hide it with the Microsoft tool "Wuwhowhide":

    https://download.microsoft.com/download/f/2/2/f22d5fdb-59cd-4275-8c95-1be17bf70b21/wushowhide.diagcab

    Otherwise, to install it anyway (whether you use Bitlocker or not) and get rid of it permanently, both for non experienced users users and for experienced users, as the manual solutions given by Microsoft are risky and complicated for the majority of users, there remains the automatic solution which simply consists of carrying out a Repair Install of Windows 10 with an In-place Upgrade.

    See the messages of this day 12 May 2024 in this thread :

    https://answers.microsoft.com/en-us/windows/forum/all/update-kb5034441-fails-to-install/1b127728-67ce-4206-8978-b3b0e38044a8?page=44

    Was this answer helpful?

    1 person found this answer helpful.
    0 comments No comments
  2. Anonymous
    2024-05-12T15:53:50+00:00

    If Microsoft isn't going to fix this update, they should remove it from the update list. It's been months now, and it still hasn't been fixed.

    Was this answer helpful?

    1 person found this answer helpful.
    0 comments No comments
  3. Anonymous
    2024-04-29T20:20:37+00:00

    If you don't use Bitlocker there is no risk of not installing this update and ignoring it.

    In this case, if its display in the Windows Update window bothers you, you can hide it with the Microsoft tool Wushowhide.diagcab:

    https://download.microsoft.com/download/f/2/2/f22d5fdb-59cd-4275-8c95-1be17bf70b21/wushowhide.diagcab

    Otherwise, to install this update, the best solution (unknown at the moment by users and even by Microsoft) is the one that I explained in my first message.

    Its installation is done automatically, therefore without risk, while taking the opportunity to repair your system without loss.


    Noticed :

    If you are on this thread at 25 pages, in our French forum, a thread on this question was locked after 62 pages:

    https://answers.microsoft.com/fr-fr/windows/forum/all/la-mise-%c3%a0-jour-kb5034441-m%c3%a8ne-%c3%a0/eea65f06-a085-48df-9c3c-4d7924bbf778?page=62

    Was this answer helpful?

    1 person found this answer helpful.
    0 comments No comments
  4. Anonymous
    2024-04-29T11:51:22+00:00

    Thanks!

    Was this answer helpful?

    1 person found this answer helpful.
    0 comments No comments
  5. Anonymous
    2024-04-26T22:16:10+00:00

    The script is the automation of the instructions here KB5028997: Instructions to manually resize your partition to install the WinRE update - Microsoft Support

    Used co-pilot to create the Powershell command for it.

    # Resize the OS partition by 250 MB <br><br><br><br> # Note: You'll need to manually shrink the partition before running this script <br><br><br><br> <br><br><br><br> # Check WinRE status <br><br><br><br> $winreInfo = reagentc /info <br><br><br><br> $winreLocation = $winreInfo Select-String "Windows RE location" ForEach-Object { $_.ToString().Split(": ")[1] } <br><br><br><br> <br><br><br><br> # Disable WinRE <br><br><br><br> reagentc /disable <br><br><br><br> <br><br><br><br> # Prepare the disk for a new recovery partition <br><br><br><br> diskpart <br><br><br><br> list disk <br><br><br><br> # Select the OS disk (replace <OS disk index> with the actual index) <br><br><br><br> sel disk <OS disk index> <br><br><br><br> list part <br><br><br><br> # Select the OS partition (replace <OS partition index> with the actual index) <br><br><br><br> sel part <OS partition index> <br><br><br><br> shrink desired=250 minimum=250 <br><br><br><br> # Select the WinRE partition (replace <WinRE partition index> with the actual index) <br><br><br><br> sel part <WinRE partition index> <br><br><br><br> delete partition override <br><br><br><br> <br><br><br><br> # Create a new recovery partition <br><br><br><br> # Check if the disk is GPT or MBR <br><br><br><br> list disk <br><br><br><br> # If GPT, create the partition <br><br><br><br> create partition primary id=de94bba4-06d1-4d40-a16a-bfd50179d6ac <br><br><br><br> gpt attributes=0x8000000000000001 <br><br><br><br> # If MBR, create the partition <br><br><br><br> create partition primary id=27 <br><br><br><br> <br><br><br><br> # Format the partition <br><br><br><br> format quick fs=ntfs label="Windows RE tools" <br><br><br><br> <br><br><br><br> # Confirm the WinRE partition is created <br><br><br><br> list vol <br><br><br><br> <br><br><br><br> # Exit from diskpart <br><br><br><br> exit <br><br><br><br> <br><br><br><br> # Re-enable WinRE <br><br><br><br> reagentc /enable <br><br><br><br> <br><br><br><br> # Confirm WinRE location <br><br><br><br> reagentc /info

    Was this answer helpful?

    1 person found this answer helpful.
    0 comments No comments