How to Disable Focus Assist Notifications While Keeping Calls Through

Quick fix: Open Settings → System → Focus → Configure focus session behavior. Then go to Settings → System → Notifications → Priority notifications. Tick Calls, Reminders, and any apps you want to bypass Do Not Disturb (Phone Link for calls, Teams for emergency meetings). You want Focus mode to silence Slack pings, Spotify notifications, … Read more

How to Defer a Windows 11 Feature Update for Compatibility Reasons

Quick fix: Open Settings → Windows Update → Advanced options → Pause updates — set to 5 weeks. For longer deferral, use Group Policy (Windows 11 Pro) at Computer Configuration → Administrative Templates → Windows Components → Windows Update → Manage updates offered → Select when Preview Builds and Feature Updates are received. Set Enabled, … Read more

How to Disable Fast Startup to Solve Boot and Shutdown Anomalies in Windows 11

Quick fix: Open Control Panel → Power Options → Choose what the power buttons do → Change settings that are currently unavailable. Scroll to Shutdown settings. Untick Turn on fast startup (recommended). Click Save changes. This is the primary fix for inconsistent boot behavior, dual-boot issues, and shutdown that doesn’t actually shut down. Fast Startup … Read more

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