Quick fix: Open Quick Settings (Win+A). Click the pencil icon at the bottom right. Click Done on default tiles by clicking Add → check tiles you want, untick others. To revert all to defaults: use registry to clear: delete HKCU\Software\Microsoft\Windows\CurrentVersion\ControlCenter. Sign out, sign back in. Quick Settings shows default tile layout (Wi-Fi, Bluetooth, Battery saver, Focus, Accessibility, Cast, Project, Nearby sharing).
Quick Settings is the panel that opens from the system tray icons (volume, Wi-Fi, battery). Default tiles get rearranged as you customize. To restore the original layout, clear the registry key that stores your customization.
Affects: Windows 11.
Fix time: ~3 minutes.
What causes this
Quick Settings layout is stored in user’s registry. As you add, remove, or rearrange tiles, the layout updates. To reset to default: clear the saved layout and let Windows recreate from system defaults.
Method 1: Reset via Edit menu
The standard route.
- Click the network/sound/battery icon in the taskbar (or press Win+A) to open Quick Settings.
- Click the pencil (edit) icon at the bottom right.
- Current tiles show with X buttons. Click X on tiles you want to remove.
- Click Add at the bottom. Pick from list of available tiles.
- Drag tiles to reorder.
- Click Done. New layout saved.
- For matching default: add Wi-Fi, Bluetooth, Battery saver, Focus, Accessibility, Cast, Project, Nearby sharing (or the subset you want).
- This is the user-friendly route. Doesn’t strictly reset; lets you re-create defaults manually.
This is the GUI approach.
Method 2: Registry reset for clean defaults
For the actual reset.
- Open Registry Editor (regedit) as Admin.
- Navigate to:
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\ControlCenter - Right-click the ControlCenter key → Export to back up first.
- Right-click ControlCenter → Delete.
- Close Registry Editor.
- Sign out and sign back in (or restart Explorer via Task Manager).
- Quick Settings now shows the default tile layout for Windows 11.
- To restore your previous customization: import the .reg backup.
This is the registry reset.
Method 3: PowerShell for scripting
For deploying across multiple PCs.
- For automated reset (e.g., kiosk image, fresh user setup):
Remove-Item -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\ControlCenter" -Recurse -Force - For all users on PC (per-user keys): script must run for each user account. Or run in user logon script.
- For specific tile addition via registry: layout is binary blob in
QuickActionssubkey. Editing manually is fragile. Use the UI for changes. - For deploying default tile config across many PCs: capture one PC’s ControlCenter key with regedit export. Deploy to others via login script that imports.
- For Intune-managed: deploy via Configuration Profile with registry settings. Note: ControlCenter values change between Windows builds. Validate per-build.
- For corporate-customized layouts: set baseline, document, replicate via Intune.
This is the scripted approach.
How to verify the fix worked
- Open Quick Settings (Win+A). Tile layout matches Windows 11 default.
- Edit menu (pencil) shows default tiles available to remove/keep.
- Registry: ControlCenter key recreated with default values after first open.
If none of these work
If layout doesn’t reset: Local profile vs roaming profile: domain users may have roaming profile that re-syncs old layout from server. Clear in profile and roam. For OneDrive sync: not directly synced; Quick Settings is per-PC. For Group Policy: corporate-managed PCs may enforce layout. gpresult /h. For Insider builds: registry path may shift. Check Settings → About → OS build, search for build-specific path. For corrupted user profile: signs of broader corruption. Create new user, test there. For multiple monitors: layout is per-user, not per-monitor. Same layout on each.
Bottom line: Open Quick Settings (Win+A) → pencil → remove/add tiles. For full reset: delete HKCU\Software\Microsoft\Windows\CurrentVersion\ControlCenter in regedit, sign out and back in.