How to Set a Per-Adapter Metric to Prioritize Ethernet Over Wi-Fi

Quick fix: Open Settings → Network & internet → Ethernet (or Wi-Fi) → click your adapter → Edit DNS server assignment doesn’t expose metric, so use PowerShell: Set-NetIPInterface -InterfaceAlias "Ethernet" -InterfaceMetric 10. Lower metric = higher priority. Set Wi-Fi to 50 and Ethernet to 10 to make Ethernet preferred. Your laptop has both Ethernet and … Read more

How to Change a Drive Letter Without Causing App Breakage

Quick fix: Before changing a drive letter, search the registry and app configurations for references to the old letter (e.g., D:\Games or E:\Backups). Use Disk Management → right-click partition → Change Drive Letter and Paths → Change to move to a new letter. Then update any hardcoded paths in app settings, scripts, and shortcuts. You … Read more

How to Save Printer Defaults So They Persist Across Reboots

Quick fix: Open Settings → Bluetooth & devices → Printers & scanners → [printer] → Printer properties → Advanced tab → Printing Defaults button. Configure preferences here (not in Printing preferences). Printing Defaults persists across reboots and applies to all users on the PC. You set your printer to default to black-and-white, double-sided, tray 2. … Read more

Why Edge Splits Screen and How to Disable Split View on Windows 11

Quick fix: Edge splits into Split Screen view from a sidebar button or accidental gesture. To exit: click the X on either pane. To disable permanently: open Edge Settings → Appearance → Customize toolbar, toggle off Split screen button. Or toggle off in edge://flags if available. You click somewhere in Edge and suddenly the browser … Read more

Fix Windows 11 Lag When Multiple Browser Tabs Are Open

Quick fix: Open Edge Settings → System and performance → Optimize performance. Enable Save resources with sleeping tabs (5 minutes), Use memory saver, and Efficiency mode. Set tab discarding aggressive: edge://flags → Discard ring improvements → Enabled. Limit tabs to ~20 active per window. You open 50+ browser tabs across multiple windows. Each tab loads, … Read more

Fix Notification Center Empty Even When Apps Send Alerts on Windows 11

Quick fix: Open Settings → System → Notifications. Ensure top toggle Notifications is On. For each app: click its row, toggle on Show notifications in notification center. If still empty, restart Windows Push Notifications service: net stop WpnService && net start WpnService. An app produces a notification — toast popup appears for a few seconds … Read more

Why Your PC Wakes Up From Sleep on Its Own and How to Lock It Down

Quick fix: Open Terminal (Admin) and run powercfg -lastwake to see what woke the PC. Then disable wake sources: powercfg -devicequery wake_armed lists devices allowed to wake. Disable each with powercfg -devicedisablewake "DeviceName". Also check scheduled tasks set to wake the PC. You put your PC to sleep at midnight. At 3 AM the fans … Read more

Why Windows 11 Mic Boost Is Greyed Out and How to Re-Enable It

Quick fix: Right-click speaker icon → Sounds → Recording tab → double-click your mic → Levels tab. If Microphone Boost slider is greyed out, the audio driver doesn’t expose the boost. Install the manufacturer’s audio driver (Realtek, Conexant) instead of Microsoft’s generic. For USB mics: open the mic’s vendor app for hardware-level gain control. Your … Read more

Why Network Discovery Keeps Turning Off in Windows 11 and How to Lock It On

Quick fix: Open Services (services.msc). Set these services to Automatic and Start: Function Discovery Provider Host, Function Discovery Resource Publication, SSDP Discovery, UPnP Device Host. Network Discovery depends on all four; if any stops, the feature reverts to Off. You enable Network Discovery in Advanced Sharing Settings. Reboot the PC. Network Discovery is Off again. … Read more