1. Check Internet Connection
- Switch to a wired connection if Wi-Fi is unstable.
- Restart your router or modem to refresh network connectivity.
- Avoid other high-bandwidth tasks during updates.
2. Restart Essential Windows Services
- Open Command Prompt (Admin) and type:
net stop wuauserv
net stop bits
net stop cryptsvc
net start wuauserv
net start bits
net start cryptsvc
- This restarts the Windows Update, BITS, and Cryptographic services to ensure smooth functionality.
3. Reset Windows Update Components
- In Command Prompt (Admin), run:
net stop wuauserv
net stop bits
ren C:\Windows\SoftwareDistribution SoftwareDistribution.old
ren C:\Windows\System32\catroot2 catroot2.old
net start wuauserv
net start bits
- This step clears corrupted cache files and forces Windows to create new update directories.
4. Run Windows Update Troubleshooter
- Go to Settings - Update & Security - Troubleshoot - Additional troubleshooters.
- Select Windows Update - Run the troubleshooter.
- Apply the recommended fixes and restart your computer.
5. Disable Antivirus or Firewall Temporarily
- Temporarily disable your third-party antivirus or firewall.
- Retry Windows Update.
- Re-enable your security software immediately after completing the update.
- This ensures that security software isn’t interfering with Windows services during updates.
6. Run System File Checker (SFC) and DISM Tools
- Open Command Prompt (Admin) and run:
sfc /scannow
DISM /Online /Cleanup-Image /RestoreHealth
- SFC scans and replaces corrupted system files.
- DISM repairs the Windows image, restoring its health for proper updates.
- Once the scan completes, restart your system and retry the update.
7. Reset Network Settings
- A misconfigured network stack can disrupt Windows Update. To reset it, run:
netsh winsock reset
netsh int ip reset
ipconfig /release
ipconfig /renew
ipconfig /flushdns
- Restart your computer afterward to apply the changes. This ensures stable communication with Microsoft’s servers.
8. Use Windows Update Assistant
- Download it from the official Microsoft website.
- Run the tool and follow the on-screen prompts to install the latest version.
- This bypasses problematic update components and performs a direct upgrade.