Fix Windows 11 Reverts to a Previous Driver After Every Update

Quick fix: Block automatic driver installation via Settings → System → About → Advanced system settings → Hardware tab → Device Installation Settings. Choose No (your device might not work as expected). Windows Update will stop replacing drivers with older versions. You install the latest driver from NVIDIA, AMD, or your laptop OEM. Everything works … Read more

How to Block a Specific Windows 11 Driver Update Permanently

Quick fix: Download Microsoft’s Show or hide updates troubleshooter (KB3073930 — search Microsoft Support). Run it. Choose Hide updates, tick the specific driver you want to block. The driver no longer appears in Windows Update and won’t reinstall. A specific driver keeps reinstalling every time Windows Update runs — even after you roll it back … Read more

How to Schedule Active Hours Beyond 18 Hours on Windows 11

Quick fix: Windows’s Settings UI caps Active Hours at 18 hours per day. To exceed that, edit registry value SmartActiveHoursState to 1 under HKLM\SOFTWARE\Microsoft\WindowsUpdate\UX\Settings — Windows then uses machine-learning to set Active Hours automatically based on observed usage, effectively eliminating the cap. You leave your PC running 24/7 — workstation, plex server, edit-and-render machine. Default … Read more

Fix Windows 11 Update Storage Reservation Fills Disk Quickly

Quick fix: Run DISM /Online /Get-ReservedStorageState to confirm Reserved Storage is enabled, then either disable it with DISM /Online /Set-ReservedStorageState /State:Disabled (frees ~7 GB but slows future updates), or clear the WinSxS component store with DISM /Online /Cleanup-Image /StartComponentCleanup /ResetBase. Your 256 GB SSD is filling up and you can’t figure out why. Settings → … Read more

Why a Specific KB Update Fails to Install and How to Force It

Quick fix: Download the KB’s standalone .msu file from catalog.update.microsoft.com and install it manually with wusa.exe — bypasses the Windows Update cache and service issues that cause repeated install failures. The Windows Update screen shows a specific KB (e.g., KB5034123) stuck at “Download error” or “Install failed”. You retry, it fails again. Other updates install … Read more

How to Manually Install a Missing Windows 11 Cumulative Update

Quick fix: Visit catalog.update.microsoft.com, search for the KB number you need (e.g., KB5034123), download the .msu for your architecture and Windows 11 version, then double-click it to install via WUSA. Windows Update is missing a cumulative update that you know exists — either because it failed to download in the normal way, was hidden by … Read more

Fix Windows Update Error 0x80073712 Without Reinstalling Windows 11

Quick fix: Open Terminal (Admin) and run DISM /Online /Cleanup-Image /RestoreHealth, then sfc /scannow, then retry Windows Update — error 0x80073712 means a system file is missing or corrupted, and DISM downloads a clean replacement. Windows Update fails with error code 0x80073712. The error message reads “Some update files are missing or have problems.” You … Read more

How to Reset Windows Update Components Without Tools on Windows 11

Quick fix: Open Terminal (Admin) and run this sequence: net stop wuauserv; net stop bits; net stop cryptsvc; ren C:\Windows\SoftwareDistribution SoftwareDistribution.old; ren C:\Windows\System32\catroot2 catroot2.old; net start wuauserv; net start bits; net start cryptsvc. Resets every Windows Update component without third-party tools. Windows Update is broken — downloads fail, services won’t restart cleanly, history shows recurring … Read more