Fix Search in File Explorer Returning Stale Results After Indexing Pause

Quick fix: File Explorer Search shows stale results when the Search Indexer is paused or behind. Resume indexing: open Control Panel → Indexing Options, check if it’s paused, and click Resume. If results stay stale, rebuild the index via Advanced → Rebuild. You search for a file you know exists. File Explorer returns old results … Read more

Why a Specific Store App Reports 0x80073CF9 During Install

Quick fix: 0x80073CF9 means “App package family conflict” — another app already registered the same package family name or a previous install left orphan registration. Reset the conflict: Get-AppxPackage -AllUsers | Where-Object Name -like “*AppName*” | Remove-AppxPackage -AllUsers in elevated PowerShell, then retry install. You try to install a specific Microsoft Store app. Install fails … Read more

Why Focus Sessions Refuse to Save Their Last Length Setting on Windows 11

Quick fix: Focus session length persists across launches via HKCU\Software\Microsoft\Windows\CurrentVersion\Notifications\Settings\Windows.SystemToast.FocusSession — but a 24H2 bug resets it. Workaround: pin a specific length via registry value SessionLengthMinutes = your desired duration as DWORD. You set Focus sessions (Clock app) to 45 minutes. Start a session, complete it. Open Focus again next day — reset to default … Read more

How to Re-Register Defender After an Antivirus Uninstall Left a Residue

Quick fix: Third-party antivirus uninstall sometimes leaves driver and registry remnants that prevent Defender from taking over. Run the vendor’s official cleanup tool (Norton Removal Tool, McAfee MCPR, Avast Removal Utility), then in elevated PowerShell: Set-MpPreference -DisableRealtimeMonitoring $false and reboot. You uninstalled Norton, McAfee, Kaspersky, or another third-party antivirus. Microsoft Defender should have automatically resumed … Read more

How to Make a Recovery USB That Includes Your OEM Drivers on Windows 11

Quick fix: Use the OEM’s built-in recovery USB creator (HP Recovery Manager, Lenovo OneKey Recovery, Dell SupportAssist OS Recovery) which includes manufacturer drivers and tools. For generic Windows 11 install USBs, slipstream OEM drivers via dism /image:<mount> /add-driver /driver:<path> /recurse. You make a Windows 11 install USB via the Media Creation Tool. It works for … 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 Persist a Multi-Monitor Layout for Every Account on Windows 11

Quick fix: Display arrangement saves per-user under HKCU\Software\Microsoft\Windows\CurrentVersion\Display. Export this key on a configured account, import for each new user (or via Group Policy Preferences). For shared workstations, set the layout for the .DEFAULT user profile so new sign-ins inherit it. You arrange three monitors in a specific physical layout. Sign in — layout is … Read more

Why CoreWindow.exe Leaks Memory After Long Display Sleep on Windows 11

Quick fix: CoreWindow.exe handles UWP app windows. Long display sleep periods can leave its working set holding references to objects that should be released. Restart Explorer (which also restarts CoreWindow) via Task Manager, or call (Get-Process -Name CoreWindow).Refresh() in PowerShell to trigger garbage collection. You leave the PC running but with display off for several … Read more

Fix Audio Service Crashes When Switching Between Wired and Wireless Outputs

Quick fix: Audio service crashes during endpoint switches usually point to a buggy audio driver enumeration. Restart the audio services: Restart-Service Audiosrv, AudioEndpointBuilder in elevated PowerShell. For chronic crashes, update or roll back the audio driver. You switch between wired headphones and Bluetooth speakers. The first time works. The second time, audio stops working entirely. … Read more

Why Firewall Allows Outbound After a Specific App Updates Itself

Quick fix: Some apps create their own Windows Firewall rules during update, including overly-broad outbound allow. Audit existing rules: Get-NetFirewallRule | Where-Object Direction -eq Outbound | Where-Object Action -eq Allow. Delete rules created by the app: Remove-NetFirewallRule -DisplayName “Suspicious Rule”. You configured strict outbound firewall rules. After updating a specific app, outbound traffic for that … Read more