How to Use Magnifier With Lens Mode for Better Readability on Windows 11

Quick fix: Open Settings → Accessibility → Magnifier. Toggle on. Under View, pick Lens. A rectangular lens follows your cursor showing magnified content. Press Win + + to launch quickly. Use Ctrl + Alt + L to switch to Lens mode while running. Magnifier offers three modes: Full screen (zooms everything), Lens (a movable window), … Read more

How to Run sfc and DISM Together for Maximum Repair Effect

Quick fix: Open Command Prompt (Admin). Run these in order: dism /online /cleanup-image /restorehealth (15-30 minutes), then sfc /scannow (5-15 minutes), then reboot. DISM repairs the Windows component store (system source) first, so SFC’s file replacement uses a healthy source. Running SFC before DISM may fail to find good copies. SFC (System File Checker) scans … Read more

How to Preserve File Timestamps During Backup With xcopy on Windows 11

Quick fix: Use xcopy with /k flag (keep attributes). Better: use robocopy instead, which preserves timestamps by default. Example: robocopy C:\Source D:\Backup /e /copy:DAT /dcopy:T. This copies all files including subdirectories, preserves Data, Attributes, Timestamps for files, and copies directory timestamps. Modern recommendation: robocopy over xcopy. Standard copy command and File Explorer drag-drop reset file … Read more

Fix Windows 11 High Memory Usage With No Apps Open

Quick fix: Open Task Manager (Ctrl+Shift+Esc). Sort processes by Memory column. Look at top 5 — if “System,” “Antimalware Service Executable,” or a vendor service (Logitech, NVIDIA) is high, that’s the cause. Disable startup apps via Task Manager → Startup tab. For Antimalware: rebalance scan schedule. Memory leak from a specific app: restart that app. … Read more

How to Install Fonts for All Users on Windows 11

Quick fix: Right-click the font file (.ttf or .otf). Pick Install for all users. Confirm UAC. Font is installed to C:\Windows\Fonts and available to every user account. Without admin rights: only the current user gets the font (installed to %LOCALAPPDATA%\Microsoft\Windows\Fonts). Windows 11 by default installs fonts per-user. For multi-user PCs (family, shared work), shared kiosks, … Read more

How to Configure Default Communications Device on Windows 11

Quick fix: Open Sound settings: right-click speaker icon → Sound settings. Scroll down → More sound settings (opens classic Control Panel). Right-click your headset → Set as Default Communication Device. Now Teams, Zoom, Discord use the headset for calls. Music, notifications use the regular Default Device. Decouple the two. Windows tracks two audio devices separately: … Read more