Unable to remove KB 5015811 on Windows server 2019

Hugor 1 Reputation point
2022-07-18T15:29:46.74+00:00

Hi all,

I'm unable to remove KB 5015811 on Windows server 2019, this last Windows update causing on printers (timed out for scaning and printing):

Getting  "an error Not all of the updates were successfully uninstalled" when I try to to uninstall from uninstall update

Getting "error code 0x8007371b" when I try to to uninstall with wusa /uninstall

I tried:

  • Clean up system image components
  • Uninstall Windows Update using DISM tool
  •  Modify the Registry Editor
  • Run Windows Update troubleshooter
  • Reset Windows Update services Any suggestions?

Regards,

H.

Windows for business | Windows Server | User experience | Other
0 comments No comments
{count} votes

4 answers

Sort by: Most helpful
  1. Anonymous
    2022-07-18T17:56:49.757+00:00

    The top one should be the SSU which can't be removed. The second one should be the LCU package.

    dism /Online /Remove-Package /PackageName:Package_for_RollupFix~31bf3856ad364e35~amd64~~17763.3165.1.8

    --please don't forget to upvote and Accept as answer if the reply is helpful--

    221984-image.png

    1 person found this answer helpful.

  2. Juan Sobrado - MSFT 421 Reputation points Microsoft Employee
    2022-07-19T15:24:07.547+00:00

    Hello @Hugor

    This type of error, 08007371b, requires in depth review of most recent CBS, ideally a copy just after receiving the error. Please share the same to help.

    Regards,

    Juan Sobrado.

    1 person found this answer helpful.
    0 comments No comments

  3. Anonymous
    2022-07-18T15:34:26.78+00:00

    SSUs are now an integrated part of updates. You cannot uninstall an SSU

    If you want to remove the LCU

    To remove the LCU after installing the combined SSU and LCU package, use the DISM/Remove-Package command line option with the LCU package name as the argument. You can find the package name by using this command: DISM /online /get-packages.

    Running Windows Update Standalone Installer (wusa.exe) with the /uninstall switch on the combined package will not work because the combined package contains the SSU. You cannot remove the SSU from the system after installation.
    https://support.microsoft.com/en-us/topic/july-12-2022-kb5015811-os-build-17763-3165-f3bdb13c-d767-47dc-a077-0ea0e9421a96

    --please don't forget to upvote and Accept as answer if the reply is helpful--


  4. Rita Hu -MSFT 9,661 Reputation points
    2022-07-19T02:20:53+00:00

    @Hugor
    Thanks for your posting on Q&A.

    Please follow the below steps to remove the LCU:
    Run the below PowerShell script to get the package name:

    DISM /online /get-packages  
    

    222018-case6.png

    Run the below PowerShell script to uninstall the update:

    dism /Online /Remove-Package /PackageName:Package_for_RollupFix~31bf3856ad364e35~amd64~~17763.3165.1.8  
    

    Best regards,
    Rita


    If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.