Why System Restore Skips a Restore Point You Just Created on Windows 11

Quick fix: System Restore enforces a 24-hour minimum between restore points by default. Your “just created” restore point may have been auto-merged with an earlier one or skipped because it’s too close in time. Adjust via registry: set HKLM\Software\Microsoft\Windows NT\CurrentVersion\SystemRestore\SystemRestorePointCreationFrequency = 0 (DWORD) to allow unlimited points. You created a System Restore point manually before … Read more

Fix BSOD PNP DETECTED FATAL ERROR After Adding a USB Hub on Windows 11

Quick fix: PNP_DETECTED_FATAL_ERROR after adding hardware means the USB hub or device’s driver enumeration triggered an unhandled exception in the Plug-and-Play manager. Disconnect the new hub, boot to Safe Mode, run verifier /reset to clear any debug verifier flags, and reconnect through a different USB port (preferably a direct one, not through a hub). You … Read more

How to Backup Drivers Before Resetting Windows 11

Quick fix: Open Terminal (Admin) and run dism /online /export-driver /destination:"D:\driver-backup". DISM copies every installed third-party driver (INFs, CABs, SYS files) to your specified folder. After reset, restore with pnputil /add-driver D:\driver-backup\*.inf /subdirs /install. You’re about to reset Windows 11 or do an in-place upgrade. Microsoft’s reset preserves Microsoft-supplied drivers but discards third-party ones — … Read more

How to Repair Boot After Reset Failed Midway on Windows 11

Quick fix: Boot from a Windows 11 install USB, open Command Prompt from Repair your computer → Troubleshoot → Advanced options, and run bootrec /fixmbr, bootrec /fixboot, and bootrec /rebuildbcd. If fixboot reports access denied, run bcdboot C:\Windows /s S: /f UEFI using the actual EFI partition letter. Reset This PC starts cleanly, gets to … Read more

Fix Reset This PC Failing Because of a Stuck Pending Update on Windows 11

Quick fix: Reset This PC checks for pending Windows Updates before starting. If one is stuck partially-installed, Reset refuses to proceed. Clear it by running Dism /Online /Cleanup-Image /StartComponentCleanup, then wuauclt /resetauthorization /detectnow, and finally check Windows Update for the pending item — install or uninstall it before retrying Reset. You click Reset This PC, … Read more

Why System Restore Points Vanish on Windows 11 and How to Protect Them

Quick fix: Open System Properties (Win + R, sysdm.cpl) → System Protection tab → select C: → Configure. Increase Max Usage slider to 10-15% (typically 50+ GB). Larger shadow storage retains more restore points before auto-eviction. You create restore points manually. A week later they’re gone. System Restore says no restore points exist. Or you … Read more

Fix Windows 11 BSOD Critical Process Died Without Memory Dump

Quick fix: Boot to Safe Mode (Settings → System → Recovery → Advanced startup → Restart → Troubleshoot → Startup Settings → F4). Once in Safe Mode, run sfc /scannow and DISM /Online /Cleanup-Image /RestoreHealth. The BSOD is usually corrupted system files; running these from Safe Mode lets them complete without competing services. Windows 11 … Read more

How to Enable Memory Dump for BSOD Diagnosis on Windows 11

Quick fix: Open System Properties (Win + R, sysdm.cpl) → Advanced tab → Startup and Recovery → Settings. Under Write debugging information, choose Automatic memory dump or Small memory dump (256 KB). The dump file is created at C:\Windows\Minidump\ on next BSOD. Your PC BSODs occasionally. You want to identify the cause but Reliability Monitor … Read more