Step-by-Step Guide to Reset Windows Update Components in Windows 10

Key Notes

  • Utilize the Windows Update Troubleshooter as the first line of defense.
  • Manual updates are essential if automatic updates fail.
  • Using DISM and SFC commands can resolve deeper system file issues related to updates.

Essential Guide to Resetting Windows Update Components on Windows 10

Windows Update serves a critical role in maintaining the performance and security of your device. However, encountering issues during the update process can be frustrating. In this guide, we will explore effective methods to reset Windows Update components, ensuring your system remains up-to-date.

Step 1: Reset Windows Update using Troubleshooter

To reset Windows Update via the Troubleshooter in Windows 10, follow these steps:

  1. Open Settings.

  2. Select Update & Security.

  3. Choose Troubleshoot.

  4. Click on Additional troubleshooters.

  5. From the “Get up and running” section, select Windows Update.

  6. Click Run the troubleshooter and follow the on-screen instructions.

After the process completes and your computer restarts, attempt to update Windows again; it should function correctly.

Step 2: Manually Install the Latest Update

To resolve Windows Update issues by installing updates manually, use the following method:

  1. Navigate to the Windows 10 update history page.

  2. Identify the latest “KB” number that corresponds with your version.

  3. Access the Microsoft Update Catalog.

  4. Search using the knowledge base (KB) number.

  5. Select the appropriate download link for your device’s architecture (32-bit or 64-bit).

  6. Double-click the downloaded file to initiate the installation.

  7. Restart your computer.

Following these steps, your device should now have the latest update installed to address Windows Update issues.

Step 3: Install the Latest Servicing Stack Update

To ensure that the necessary Servicing Stack Update is present on your Windows 10, proceed as follows:

  1. Open Settings.

  2. Click on System.

  3. Select About.

  4. Check your system’s architecture under the “System type” section.

  5. Visit the Microsoft Update Catalog.

  6. Download the most recent Servicing Stack Update appropriate for your version.

  7. Install the update by double-clicking the file.

  8. Reboot your computer to finalize the update.

After you reboot, the updates should now be accessible via the Settings app.

Step 4: Repair System Files to Fix Windows Update

To fix any corrupted system files using DISM and SFC, follow these steps:

  1. Open Start.

  2. Search for Command Prompt, right-click it, and select Run as administrator.

  3. Execute the following DISM command:

    dism.exe /Online /Cleanup-image /Restorehealth

  4. Then run this SFC command:

    sfc /scannow

After completing the above, check for updates again to see if the issues have been resolved.

Step 5: Reset Windows Update via Command Prompt

For a manual reset of Windows Update components directly from the Command Prompt, perform the following:

  1. Open Start.

  2. Search for Command Prompt, right-click, and select Run as administrator.

  3. Delete BITS files using this command:

    Del "%ALLUSERSPROFILE%\Application Data\Microsoft\Network\Downloader\*.*"

  4. Press Y to confirm the deletion.

  5. If access is denied, retry as necessary.

  6. Input commands to reset BITS and Windows Update services:

    sc.exe sdset bits D:(A;;CCLCSWRPWPDTLOCRRC;;;SY)...

  7. Change to the System32 directory:

    cd /d %windir%\system32

  8. Register required DLLs using:

    regsvr32.exe /s [DLL name]

  9. Reset network configurations with:

    netsh winsock reset

  10. Restart necessary services with:

    net start bits

    net start wuauserv

  11. Finally, restart your computer.

Following these instructions will reset Windows Update components effectively, and you should be able to download updates without issues.

Summary

This guide has detailed methods for resolving Windows Update issues on Windows 10, covering the use of troubleshooting tools, manual updates, and system command repairs. Each step is designed to restore functionality to the update process, ensuring your system stays current and secure.

Conclusion

Resolving Windows Update issues can significantly enhance your device’s performance and security. By following the steps outlined in this guide, you can effectively troubleshoot and reset Windows Update components. Ensure to perform regular updates to keep your system running smoothly.

FAQ (Frequently Asked Questions)

What should I do if the Windows Update Troubleshooter does not fix the issue?

If the troubleshooter fails, consider manually updating Windows or using the Command Prompt to reset the update components as described in this guide.

Are there any risks involved in using Command Prompt for Windows Update?

While using Command Prompt can seem daunting, following the exact commands as outlined in this guide minimizes risk. Always ensure you have backups of important data.