How to Unlink a Microsoft Account From a Local Profile on Windows 11

Quick fix: Open Settings → Accounts → Your info. Click Sign in with a local account instead. Enter your current Microsoft Account password to confirm, then set a local username and password. The user profile folder stays; apps and documents remain. Microsoft Account binding is removed. You want to disconnect your Microsoft Account from this … Read more

How to Configure Boot to Always Show Recovery Menu on Windows 11

Quick fix: Open Terminal (Admin) and run bcdedit /set {bootmgr} bootmenupolicy legacy. This enables the F8 key during boot to reach Advanced Boot Options. Also run bcdedit /set {bootmgr} displaybootmenu yes and bcdedit /set {bootmgr} timeout 10 to show the boot manager menu for 10 seconds on every startup. When something breaks, you need to … Read more

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