Hello lng810,
Welcome to the Microsoft Community.
It sounds like you're dealing with a frustrating update issue that has persisted even after a clean install. Here are a few steps that might help resolve your Windows Update problem, especially since you've already tried some basic troubleshooting methods:
1. Run Windows Update Troubleshooter
- Open the Settings app.
- Go to Update & Security > Troubleshoot > Additional troubleshooters.
- Select Windows Update and then click Run the troubleshooter.
- Follow the prompts and let the troubleshooter attempt to fix any issues.
2. Manually Reset Windows Update Components
You may have tried this already, but ensure you follow the steps to reset Windows Update components manually:
- Stop Windows Update Services:
- Open Command Prompt as Administrator (Right-click Start > Command Prompt (Admin)).
- Run the following commands one by one:
net stop wuauserv
net stop bits
net stop cryptsvc
net stop msiserver
- Delete the SoftwareDistribution Folder:
- Navigate to C:\Windows\SoftwareDistribution\Download and delete all contents (this is where updates are temporarily stored).
- Restart Services:
- After clearing the SoftwareDistribution folder, restart the services you stopped earlier:
net start wuauserv
net start bits
net start cryptsvc
net start msiserver
- Check for Updates:
- After resetting the update components, try running Windows Update again.
3. Use the Windows Update Assistant (Windows 10)
Since you're on Windows 10 1903, you can try using the Windows Update Assistant to upgrade to the latest version of Windows 10:
- Download it from Download Windows 10.
- Run the tool, and it will check for updates and help you upgrade your Windows version.
4. Perform System File Checker and DISM: These tools can repair corrupted system files.
Follow the steps to run System File Checker:
- Open Command Prompt as an administrator.
- Run the following commands one by one:
DISM /Online /Cleanup-Image /ScanHealth
DISM /Online /Cleanup-Image /CheckHealth
DISM /Online /Cleanup-Image /RestoreHealth - Run sfc /scannow and wait for the process to complete. Check if there are any detected errors.
5. Check for Disk Errors
A failing hard drive or SSD could also cause issues with updates. Try to use chkdsk command to scan the disk.
- Click Win key + X to open "Command Prompt (Admin)"
- Enter chkdsk <drive letter>: /f in the command prompt window
- For example, to check and repair the D partition, enter the following command: chkdsk D: /f
- Press Y then Enter to run the chkdsk disk check tool to scan the D partition. After that, you can check other partitions similarly.
Note: Please check other drives other than your system drive (usually C) first. You need to restart to check C drive.
Disclaimer: Running chkdsk can check the file system and file system metadata of a volume for logical and physical errors. To avoid any trouble for you, do not cancel or interrupt chkdsk, and back up important data.
For more information, please refer to this chkdsk | Microsoft Learn.
6. Install Updates Manually
If updates are stuck, you might need to download and install them manually:
- Go to the Microsoft Update Catalog.
- Search for the specific update you're trying to install (you can find the KB number from Windows Update or from the Settings > Update & Security).
- Download the update and install it manually.
7. Consider Updating to Windows 11 via installation media
Since you've had problems with updates and the Microsoft Store on Windows 11 before, this could be an option:
- Visit the official Microsoft website, Download Windows 11
- Use the installation tool to create a USB installation disk or ISO file.
- Insert the USB installation disk or mount the ISO file, and then run setup.exe.
- Select the "Upgrade this PC" option and click "Next".
- Make sure to select the "Keep personal files and apps" option and click "Install".
- The process may take some time, please wait patiently for it to complete.
Disclaimer: Let's try to perform an in-place upgrade, which will refresh your Windows files and operating system without deleting files or applications. But if there is important data on the computer, we still recommend backing it up in advance.
Summary
Given that the issue persists even after a clean install, focusing on system repairs (SFC, DISM) and resetting Windows Update components manually should be your next steps. If all else fails, you can try an in-place upgrade or clean install again, but it's important to rule out any hardware issues (like SSD failure or driver problems) that could be interfering with the update process.
Let me know if you need more specific guidance on any of these steps!
Best Regards,
William.Y | Microsoft Community Support Specialist