How to Clear App Specific Cache Without Resetting the Whole Store

Quick fix: Settings → Apps → Installed apps → find the specific Microsoft Store app → three-dot menu → Advanced options → click Reset. This clears just that app’s data and cache. Doesn’t affect other Store apps or Microsoft Store itself. App may need to re-sign-in afterward. Microsoft Store app data lives per-app at %LOCALAPPDATA%\Packages\[package-name]. … Read more

How to Replace Corrupted System Files Without Resetting Windows 11

Quick fix: Open Command Prompt (Admin). Run: sfc /scannow (5-15 min). Repairs system files using local component store. If SFC reports issues it can’t fix: dism /online /cleanup-image /restorehealth (15-30 min) to refresh component store, then re-run sfc /scannow. Reboot. Specific files repaired without full Windows reset. System File Checker (SFC) scans Windows system files … Read more

Fix Display Resolution Resets to 1024×768 After Windows 11 Sleep

Quick fix: Display resolution resetting to 1024×768 after sleep means: graphics driver failed to detect monitor properly. Update GPU driver from manufacturer (Nvidia, AMD, Intel). For Nvidia: install Studio driver (more stable than Game Ready). Disable adapter sleep: Device Manager → Display adapters → right-click GPU → Properties → Power Management → untick “Allow the … Read more

How to Remove Built-in Fonts You Don’t Use on Windows 11

Quick fix: Settings → Personalization → Fonts. Click font you want to remove → Uninstall (option only for added fonts, not built-ins). Built-in fonts removable via Settings → Apps → Optional features → remove specific Language Features (Asian fonts come with Asian language packs). Or use PowerShell to remove specific font files (with Admin + … Read more

Fix Network Profile Stuck on Public After Switching to Private

Quick fix: Open Settings → Network & internet → pick connection → Network profile type → pick Private network. If toggle doesn’t persist: open PowerShell (Admin) and run Get-NetConnectionProfile to see current. Then Set-NetConnectionProfile -InterfaceAlias “Wi-Fi” -NetworkCategory Private (replace Wi-Fi with adapter name). Network profiles: Public (firewall stricter, network discovery off) vs Private (relaxed, discovery … Read more

How to Detect a Driver Power State Failure Without a BSOD

Quick fix: Open Event Viewer (eventvwr.msc). Navigate to Windows Logs → System. Filter by Source: Kernel-Power or Event ID 41 (unexpected shutdown). Look for entries indicating power state failures. Or use PowerShell: Get-WinEvent -FilterHashtable @{LogName=’System’; ProviderName=’Microsoft-Windows-Kernel-Power’} -MaxEvents 20. Identify pattern to find faulty driver. Driver Power State Failure usually causes BSOD. But sometimes manifests as … Read more

How to Stop a Specific Monitor From Going to Sleep on Windows 11

Quick fix: Open Settings → System → Display. Pick the specific monitor. Setting Multiple displays → Display sleep settings is system-wide; can’t set per-monitor in Windows directly. Workaround: keep one monitor showing content (video / app) while other sleeps. Or use third-party tool like ScreenOff for per-monitor control. Or disable sleep system-wide. Windows 11 doesn’t … Read more

Fix Display Resolution Resets to 1024×768 After Windows 11 Sleep

Quick fix: Display resolution resetting to 1024×768 after sleep means: graphics driver failed to detect monitor properly. Update GPU driver from manufacturer (Nvidia, AMD, Intel). For Nvidia: install Studio driver (more stable than Game Ready). Disable adapter sleep: Device Manager → Display adapters → right-click GPU → Properties → Power Management → untick “Allow the … Read more