How to Pin a Specific Driver Version on Windows 11

Quick fix: Install the desired driver version. Then run in Command Prompt (Admin): wushowhide.diagcab (download from Microsoft) → pick the driver update from the list to hide it. Windows Update won’t offer that driver again. Alternative: Group Policy → Computer Configuration → Administrative Templates → Windows Components → Windows Update → Do not include drivers … Read more

How to Disable Driver Updates via Group Policy on Windows 11 Pro

Quick fix: Open gpedit.msc (Pro/Enterprise). Navigate to Computer Configuration → Administrative Templates → Windows Components → Windows Update → Manage updates offered from Windows Update. Find Do not include drivers with Windows Updates. Set to Enabled. Apply → gpupdate /force. Driver updates are blocked from Windows Update channel. Windows Update pushes driver updates by default. … Read more

Why Windows 11 Update Assistant Cannot Start and How to Reset It

Quick fix: Update Assistant runs as a Windows service. To reset: stop running service, clear cache, restart. Open Task Manager → find Windows Update Assistant process → End Task. Delete C:\Users\[user]\AppData\Local\Microsoft\Windows10Upgrade folder. Download the latest Update Assistant from microsoft.com/software-download/windows11. Run as Administrator. Should start fresh. Windows 11 Update Assistant helps force-install feature updates. Sometimes won’t … Read more

Fix Windows 11 Updates Repeatedly Failing With 0x80070643 Error

Quick fix: 0x80070643 means “installation failure: fatal error during installation.” Common cause: WinRE partition too small. To fix: Settings → System → Recovery → Advanced startup → Restart now → Troubleshoot → Advanced → Command Prompt. Run reagentc /disable, then re-resize partition (250MB+ recommended). Or use Microsoft’s “Update for Windows Recovery Environment” tool. 0x80070643 is … Read more

Why Windows 11 Update Assistant Restarts the Download Repeatedly

Quick fix: Stop and delete leftover download state. Close Update Assistant. Open Task Manager → End any Windows10Upgrade / setupprep processes. Delete folders: C:\$Windows.~BT, C:\Windows10Upgrade, and %LocalAppData%\Microsoft\Windows10Upgrade. Download fresh Update Assistant from microsoft.com/software-download/windows11. Run as Admin. Ensure 25GB+ free disk space. Connect to a stable Wi-Fi or wired network. Update Assistant downloads files, fails (network … Read more

How to Disable Reserved Storage on Windows 11 Without Breaking Updates

Quick fix: Open Registry Editor (Admin). Navigate to HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\ReserveManager. Set ShippedWithReserves to 0. Reboot. Reserved Storage disables; ~7GB+ freed. Updates still install but may temporarily use C: drive space during installation instead of reserved. Reserved Storage allocates ~7GB on Windows 11 specifically for updates, system cache, temporary files. Reduces disk space needed for updates by … Read more

How to Clean Up SoftwareDistribution Folder Safely on Windows 11

Quick fix: Open Admin Command Prompt. Run: net stop wuauserv, net stop bits, then ren C:\Windows\SoftwareDistribution SoftwareDistribution.old, then net start wuauserv && net start bits. Windows recreates folder. Old version preserved as .old in case rollback needed. SoftwareDistribution folder holds Windows Update downloads. Can grow huge over time. Cleaning resolves stuck updates, frees disk space, … Read more

How to Resume an Interrupted Windows 11 Feature Update

Quick fix: If Windows 11 feature update interrupted (power loss, crash), reboot. Windows usually auto-resumes. If it doesn’t: Settings → Windows Update → Check for updates. Update Assistant resumes from where left off (uses cached files). For corrupted state: Microsoft Update Assistant or in-place upgrade via ISO usually fixes. Feature updates (Windows 11 22H2 to … Read more

How to Use DISM to Repair Update Component Corruption on Windows 11

Quick fix: Open Command Prompt (Admin). Run sequentially: dism /online /cleanup-image /scanhealth (15-30 min, identifies issues). Then dism /online /cleanup-image /restorehealth (15-30 min, repairs). Then sfc /scannow (5-15 min, repairs system files). Reboot. Repair complete. For Update-specific corruption: focus on /restorehealth. DISM (Deployment Image Servicing and Management) repairs the Windows component store, which Windows Update … Read more