Windows Guides

How to Fix ‘Not All of the Updates Were Successfully Uninstalled’ Error

Learn how to fix not all of the updates were successfully uninstalled error with this comprehensive step-by-step guide.

Realistic photo-style image of a Windows 11 PC screen displaying a failed update or uninstall error, user troubleshooting, modern workspace, soft lighting, high quality, support article cover.

Encountering the message “Not all of the updates were successfully uninstalled” can be frustrating, especially when it disrupts your workflow. This error often arises due to a variety of issues, including corrupted update files or problems with Windows Update services. Fortunately, there are multiple ways to address this problem effectively.

In this guide, you will learn how to fix not all of the updates were successfully uninstalled error using various methods that are easy to follow and implement on your Windows system.

How to Fix Not All of the Updates Were Successfully Uninstalled

Before diving into the solutions, it’s important to understand what might be causing the error. This knowledge will enable more effective troubleshooting.

Requirements or Prerequisites

To successfully follow the steps in this guide, ensure that you have:

  • A computer running Windows
  • Administrative access to the system
  • Basic knowledge of command line operations

How to Fix Not All of the Updates Were Successfully Uninstalled

Now, let’s explore the methods for fixing the “Not all of the updates were successfully uninstalled” error.

1. Use PowerShell to Uninstall Windows Update

Using PowerShell can be an effective way to remove problematic updates. Here’s how you can do it:

  • Open PowerShell as an administrator.

  • Type the following command to display a list of installed updates:
    wmic qfe list brief /format:table

  • Find the update you want to uninstall.

  • Use the following command to proceed with the uninstallation (replace ‘number’ with the actual KB number):
    wusa /uninstall /kb:number

2. Use the DISM Tool to Remove the Windows Update

The Deployment Imaging Service and Management Tool (DISM) offers a way to remove updates through command line:

  • Open Command Prompt as an administrator.

  • First, get a list of all installed packages:
    DISM /Online /Get-Packages | clip

  • Once you locate the package you want to remove, use the following command (replace ‘Package_ID’ with the actual ID):
    dism /Online /Remove-Package /PackageName:Package_ID

3. Reset the Windows Update Components

Sometimes the issue lies with the Windows Update components. Resetting them may resolve the error:

  • Open Command Prompt as an administrator.
  • Use the following commands one after another:

    net stop wuauserv

    net stop cryptSvc

    net stop bits

    net stop msiserver

    ren C:\Windows\SoftwareDistribution SoftwareDistribution.old

    ren C:\Windows\System32\catroot2 catroot2.old

    net start wuauserv

    net start cryptSvc

    net start bits

    net start msiserver

4. Restart the Windows Update Service

If necessary, you can simply restart the Windows Update service:

  • Press Windows + R, type services.msc, and hit Enter.
  • Locate “Windows Update” from the list.
  • Right-click and select “Restart”.

5. Clean Boot Windows

Performing a clean boot will help isolate any software conflicts:

  • Press Windows + R, type msconfig and hit Enter.
  • In the System Configuration window, navigate to the Services tab.
  • Check the “Hide all Microsoft services” box.
  • Click “Disable all”.
  • Go to the Startup tab and click “Open Task Manager”.
  • Disable all startup items.

After completing these steps, restart your computer.

6. Make Changes to the Windows Registry

Changing specific registry settings can sometimes resolve update issues:

  • Press Windows + R, type regedit, and hit Enter.

  • Navigate to:HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Print

  • Modify the necessary keys as advised by expert guides (ensure to create a backup before making changes).

7. Run an Antimalware Scan

Sometimes malware can interfere with system updates. Running a scan can help:

  • Open Windows Security or any reliable antivirus software.
  • Select the option for a full system scan and follow the prompts.

Common Problems and Fixes

Here are some common issues people face when addressing the “Not all of the updates were successfully uninstalled” error:

  • Failure to Uninstall: If an update doesn’t uninstall as expected, ensure you have administrative rights.
  • Service Issues: Sometimes services may not respond; checking your internet connection can help.
  • Registry Errors: If you encounter issues after modifying the registry, restore your backup.

Tips, Best Practices, and Warnings

  • Always create backups before making significant changes to your system.
  • Make sure your Windows system is updated regularly to prevent similar issues.
  • Avoid using third-party tools unless recommended by trusted sources.

Read also : How to Fix File Explorer Stuck At ‘Working on It’

In conclusion, knowing how to fix not all of the updates were successfully uninstalled error can save considerable time and frustration. By following the outlined methods, users can effectively troubleshoot and resolve this issue. Always remember to back up your system and check for updates regularly for a smoother experience.

GOATPG Team

GOATPG Team is a group of technology enthusiasts dedicated to publishing practical Android and Windows guides, honest app reviews, and the latest tech news. Our goal is to simplify… More »

Related Articles

Leave a Reply

Your email address will not be published. Required fields are marked *

Back to top button