How to Find and Uninstall Hidden Windows Updates Using Command Prompt
How to Find and Uninstall Hidden Windows Updates Using Command Prompt
Command Prompt allows you to view and uninstall hidden Windows updates that do not appear in the Settings app. By using WMIC and WUSA commands, you can identify installed KB updates and safely remove problematic ones.
Why Some Windows Updates Stay Hidden
Windows updates are usually managed through the Settings app, but not all updates appear there. Certain updates operate at a system level and remain invisible in the standard update history.
These hidden updates can still:
- Affect system performance
- Cause boot or login issues
- Trigger blue screen errors
- Break drivers or applications
When a hidden update becomes problematic and refuses to uninstall normally, Command Prompt is the most reliable solution.
When Should You Use Command Prompt?
Using Command Prompt is recommended when:
- The update is not visible in Windows Update history
- The uninstall option is missing
- The system becomes unstable after an update
- Settings or Recovery options fail
- You need direct control over installed updates
This approach is widely used by IT professionals and system administrators.
⚠️ Important Precautions
Before proceeding, keep these best practices in mind:
- Always run Command Prompt as Administrator
- Replace KBXXXXXXX with the actual update number
- Restart your computer after uninstalling an update
- Avoid removing critical security updates unless necessary
Step 1: Open Command Prompt as Administrator
- Click the Start Menu
- Type Command Prompt
- Right-click it and select Run as administrator
- Click Yes when prompted by User Account Control
Administrator access is mandatory for managing Windows updates.
Step 2: View All Installed (Including Hidden) Updates
Run the following command:
wmic qfe list brief /format:table
What This Command Shows
- All installed Windows updates
- Update IDs (KB numbers)
- Installation dates
- Update descriptions
This command reveals updates that may not appear in normal Windows interfaces.
Step 3: Identify the Problematic Update
From the list, locate the update causing issues.
For documentation and security reasons, always reference updates generically as:
KBXXXXXXX
This makes your guide reusable for any future update.
Step 4: Uninstall the Hidden Windows Update
Use the following command:
wusa /uninstall /kb:XXXXXXX
Command Breakdown
- wusa → Windows Update Standalone Installer
- /uninstall → Removes the update
- /kb:XXXXXXX → Specifies the update to remove
Step 5: Confirm the Uninstallation
- A confirmation dialog will appear
- Click Yes to proceed
- Wait for Windows to complete the process
Do not interrupt the uninstallation.
Step 6: Restart Your System
Restarting your PC is essential to:
- Finalize the update removal
- Restore system stability
- Prevent rollback conflicts
Benefits of Using Command Prompt for Update Removal
✔ Works when Settings fails
✔ Reveals hidden updates
✔ Forces stubborn updates to uninstall
✔ Faster and more reliable
✔ Ideal for enterprise troubleshooting
Common Problems This Fix Resolves
- Blue screen errors after updates
- Boot failures
- Performance degradation
- Driver conflicts
- Network connectivity issues
Advanced Tips (Expert Level)
- Run the command in Safe Mode if uninstall fails
- Temporarily pause Windows Updates to prevent reinstallation
- Use Microsoft’s Show/Hide Updates tool
- Document removed KBs for audit tracking
Final Thoughts
Hidden Windows updates can silently destabilize a system. Command Prompt gives you direct visibility and control, allowing you to safely identify and remove problematic updates when standard tools fail.
This method is reliable, professional, and widely used in enterprise environments.
