Forum Discussion
Windows 11 version 25h2 install error 0x800f0983
If you're encountering the "Windows 11 Version 25H2 install error 0x800f0983" on your system, using standard system tools can help resolve the issue without needing third-party software. Here's a step-by-step approach to fix the Windows 11 Version 25H2 install error 0x800f0983 with built-in Windows tools:
1. Run the Windows Update Troubleshooter
- Go to Settings > System > Troubleshoot > Other troubleshooters.
- Find and run Windows Update troubleshooter.
- Follow the on-screen instructions to detect and fix common update problems.
2. Use the Deployment Image Servicing and Management (DISM) Tool
- Open Command Prompt as administrator.
- Enter the following commands one by one:
DISM /Online /Cleanup-Image /CheckHealth
DISM /Online /Cleanup-Image /ScanHealth
DISM /Online /Cleanup-Image /RestoreHealth
- These commands scan your system image for corruption and attempt to repair it.
3. Run the System File Checker (SFC)
- After DISM completes, run:
sfc /scannow
- This will check for and repair corrupted system files that might be causing the installation error.
4. Reset Windows Update Components
- Manually reset the Windows Update components:
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
- Run these commands in Command Prompt as administrator.
5. Check for Pending Updates and Manually Install
- Go to Settings > Windows Update.
- Check for updates and try to install again.