Fix Default App Settings Reverting After Edge or Chrome Update

Quick fix: Edge and Chrome both write to HKCU\Software\Microsoft\Windows\Shell\Associations\UrlAssociations on every update if they detect they’re not the default. Open Settings → Apps → Default apps, search by file type (e.g., .pdf, http), set the desired app, then deny Edge/Chrome “reset” prompts so they stop overriding you. You set Firefox as your default browser. A … Read more

How to Export and Import Notification Preferences Across PCs on Windows 11

Quick fix: Notification settings are stored in HKCU\Software\Microsoft\Windows\CurrentVersion\Notifications\Settings. Export this key to a .reg file on the source PC, copy it to the target PC, and import. Per-app notification toggles, Focus settings, and Do Not Disturb hours all carry over. You spent an hour configuring notification settings on your main PC: turned off banners for … Read more

Why a Specific Settings Page Returns Some Settings Are Managed Without GPO

Quick fix: The “Some settings are managed by your organization” banner appears when ANY policy registry value is set — even ones unrelated to the visible page. Run gpresult /h C:\gpresult.html as Administrator, open the HTML, and search for the specific settings page name to find the policy responsible. Remove the policy or clear the … Read more

Fix Mouse Cursor Theme Reset After a Display Scaling Change on Windows 11

Quick fix: Display scaling changes reset the cursor scheme because Windows reloads HKCU\Control Panel\Cursors from the system default. Re-apply your scheme via Control Panel → Mouse → Pointers. To persist permanently, save the cursor scheme as a named scheme so reload picks it up. You changed the display scaling from 100% to 125% (or moved … Read more

How to Force the Old Control Panel for Region and Language on Windows 11

Quick fix: Run control intl.cpl from Run dialog to open the legacy Region applet directly. For language/keyboard, run control input.dll. These dialogs still work in Windows 11 even as the new Settings deprecates parts of them. You want the old Control Panel Region dialog — the one with explicit Format dropdowns, currency, number, date, time … Read more

Why Windows 11 Hides the Calendar Behind Notifications

Quick fix: In Windows 11, clicking the system tray clock opens the Notifications panel by default, with the calendar hidden underneath. Either scroll down past notifications to find the calendar, or set HKCU\Software\Microsoft\Windows\CurrentVersion\ImmersiveShell\UseWin32TrayClockExperience = 1 in registry to restore the legacy calendar-first flyout. You click the tray clock expecting the familiar Windows 10 calendar with … 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

Fix Windows 11 Settings App Closing on Click When You Open Personalization

Quick fix: Re-register the Settings app with Get-AppxPackage *immersivecontrolpanel* | Reset-AppxPackage in elevated PowerShell, then sign out and back in. If that doesn’t help, run sfc /scannow — the Personalization page often crashes Settings when a corrupted system file makes the wallpaper render fail. You open Settings, click Personalization, and the entire Settings window closes … Read more

How to Lock Down Specific Settings Pages Using GPO on Windows 11 Pro

Quick fix: Open gpedit.msc on Windows 11 Pro, navigate to User Configuration → Administrative Templates → Control Panel, and use Hide specified Settings page visibility with a colon-prefixed URI list (e.g., showonly:network;windowsupdate) to restrict access to specific pages. You want users on a Windows 11 Pro workstation to be able to change display brightness and … Read more