How to Calibrate Color on Windows 11 Without Third-Party Tools

Quick fix: Open Settings → System → Display → Advanced display → Display adapter properties → Color Management tab → Calibrate display. The built-in Display Color Calibration wizard walks through gamma, brightness, contrast, and color balance — gives a usable calibration in 10 minutes without any hardware colorimeter. Your monitor’s colors look off — whites … Read more

How to Export Windows Update Logs for Troubleshooting

Quick fix: Open Terminal (Admin) and run Get-WindowsUpdateLog. PowerShell merges all ETL trace logs and writes a readable WindowsUpdate.log to your Desktop within a minute. The log contains every Windows Update Agent event with timestamps, error codes, and detailed sub-component breakdowns. Windows Update is failing with cryptic error codes (0x80070002, 0x800F0922, 0x80240034). The Settings UI … Read more

Fix Windows 11 Inaccessible Boot Device After a Storage Driver Change

Quick fix: Boot from a Windows install USB, choose Repair your computer → Troubleshoot → Command Prompt. Run bcdedit /enum to find the OS boot entry, then bcdedit /set {default} safeboot minimal to force Safe Mode. After booting in Safe Mode, install the correct storage driver and run bcdedit /deletevalue {default} safeboot to restore normal … Read more

How to Backup Drivers Before Resetting Windows 11

Quick fix: Open Terminal (Admin) and run dism /online /export-driver /destination:"D:\driver-backup". DISM copies every installed third-party driver (INFs, CABs, SYS files) to your specified folder. After reset, restore with pnputil /add-driver D:\driver-backup\*.inf /subdirs /install. You’re about to reset Windows 11 or do an in-place upgrade. Microsoft’s reset preserves Microsoft-supplied drivers but discards third-party ones — … Read more

How to Disable Loudness Equalization to Restore Original Mixing

Quick fix: Right-click the speaker icon in the system tray → Sounds → Playback tab → double-click your speakers/headphones → Enhancements tab → untick Loudness Equalization. Or pick Disable all sound effects for a clean baseline that matches the original mix. Music sounds “flat” or “loud-but-lifeless” on your PC. Quiet vocals are pushed up to … Read more

How to Configure Cloudflare or Quad9 DNS on Windows 11 Adapters

Quick fix: Open Settings → Network & internet → Wi-Fi (or Ethernet) → [your network] → DNS server assignment → Edit → Manual. Enable IPv4. Set Preferred DNS: 1.1.1.1 (Cloudflare) or 9.9.9.9 (Quad9). Alternate: 1.0.0.1 or 149.112.112.112. Pick DNS over HTTPS: Automatic for encrypted DNS. You want faster, more private DNS than your ISP’s default. … 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 Block Specific Microsoft Store App Updates on Windows 11

Quick fix: The Store has no native per-app update block. The practical paths on Windows 11 are an AppLocker version-pin rule on Pro/Enterprise, an export-then-sideload of the working .appxbundle, or marking your connection as metered to defer all Store updates temporarily. Most of the time you want every Store app to stay current. But one … Read more

How to Use Variants of a Theme Across Day and Night on Windows 11

Quick fix: Windows 11 has no built-in scheduled theme switching, but Task Scheduler plus a two-line PowerShell script that flips the AppsUseLightTheme and SystemUsesLightTheme registry values gives you light at sunrise and dark at sunset without any third-party app. macOS and most phones switch their UI between light and dark automatically as the day progresses. … Read more