How to Restart Only File Explorer Without Logging Off on Windows 11

Quick fix: Open Task Manager (Ctrl + Shift + Esc) → Processes tab → right-click Windows Explorer → Restart. The taskbar disappears for ~2 seconds then comes back fresh, no logoff or reboot needed. Your taskbar is frozen. The start menu won’t open. Desktop icons aren’t responding to right-click. You don’t want to log off … Read more

How to Toggle Smart App Control Without Reinstalling Windows 11

Quick fix: Once Smart App Control is set to Off, Windows blocks toggling it back to On until a clean install. Workaround: edit registry HKLM\SYSTEM\CurrentControlSet\Control\CI\Policy → VerifiedAndReputablePolicyState = 1, then reboot — SAC re-enables in evaluation mode without reinstall. Smart App Control (SAC) is Windows 11’s app-reputation layer that blocks untrusted EXE files. It runs … Read more

How to Read Minidump Files With WinDbg on Windows 11

Quick fix: Install WinDbg from the Microsoft Store (free), open the minidump file at C:\Windows\Minidump\*.dmp, set the symbol path to srv*C:\symbols*https://msdl.microsoft.com/download/symbols, then run !analyze -v to get the bug check code, faulting driver, and call stack. Your PC just blue-screened. After reboot, Windows asks if you want to report the crash. Behind the scenes, Windows … Read more

How to Set a Per-Protocol Default Handler on Windows 11

Quick fix: Open Settings → Apps → Default apps → Choose defaults by link type. Scroll to the protocol you want (mailto, http, ms-teams, zoommtg, etc.) and pick the app. For protocols not listed, edit registry HKEY_CURRENT_USER\Software\Microsoft\Windows\Shell\Associations\UrlAssociations\<protocol>\UserChoice directly. You want mailto: links to open Thunderbird, not the new Outlook. You want zoommtg:// links to launch … Read more

How to Reset Windows 11 Power Plan to Default Without Reinstalling

Quick fix: Open Terminal (Admin) and run powercfg -restoredefaultschemes. All custom power plans are deleted and the default plans (Balanced, Power Saver, High Performance, Ultimate Performance) are restored to factory state. Your laptop’s battery life has dropped from 8 hours to 4. Or your desktop sleeps too aggressively. Or a third-party app — Razer Synapse, … Read more

Why Your Windows 11 Display Goes to Sleep Too Aggressively

Quick fix: Open Settings → System → Power & battery → Screen and sleep. Increase the timeouts (or set to Never). If timeouts still trigger early, run powercfg /requestsoverride to inspect which background process is mis-reporting screen activity, and check that Battery Saver isn’t auto-engaging at 20%. Your screen dims and turns off after 2 … Read more

How to Fix Slow Boot Times After Installing a Recent Windows 11 Update

Quick fix: Open Settings → Apps → Startup, disable everything you don’t need at boot. Then run Disk Cleanup as admin with Windows Update Cleanup ticked. If still slow, the WindowsApps install state is corrupted from the update — repair with sfc /scannow followed by DISM /Online /Cleanup-Image /RestoreHealth. Before the latest cumulative update, your … Read more

Fix Crackling Sound From USB Audio Devices on Windows 11

Quick fix: Set the USB audio device’s sample rate to 48000 Hz (24-bit) in Settings → System → Sound → [device] → Audio format. If crackling persists, disable USB selective suspend for the device’s root hub in Device Manager → Universal Serial Bus controllers → right-click each hub → Properties → Power Management → untick … Read more