How to Restore Default Quick Settings Tiles on Windows 11
🔍 WiseChecker

How to Restore Default Quick Settings Tiles on Windows 11

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.

Symptom: Want to reset Quick Settings tiles to Windows 11 defaults.
Affects: Windows 11.
Fix time: ~3 minutes.

ADVERTISEMENT

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.

  1. Click the network/sound/battery icon in the taskbar (or press Win+A) to open Quick Settings.
  2. Click the pencil (edit) icon at the bottom right.
  3. Current tiles show with X buttons. Click X on tiles you want to remove.
  4. Click Add at the bottom. Pick from list of available tiles.
  5. Drag tiles to reorder.
  6. Click Done. New layout saved.
  7. For matching default: add Wi-Fi, Bluetooth, Battery saver, Focus, Accessibility, Cast, Project, Nearby sharing (or the subset you want).
  8. This is the user-friendly route. Doesn’t strictly reset; lets you re-create defaults manually.

This is the GUI approach.

ADVERTISEMENT

Method 2: Registry reset for clean defaults

For the actual reset.

  1. Open Registry Editor (regedit) as Admin.
  2. Navigate to:
    HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\ControlCenter
  3. Right-click the ControlCenter key → Export to back up first.
  4. Right-click ControlCenter → Delete.
  5. Close Registry Editor.
  6. Sign out and sign back in (or restart Explorer via Task Manager).
  7. Quick Settings now shows the default tile layout for Windows 11.
  8. To restore your previous customization: import the .reg backup.

This is the registry reset.

Method 3: PowerShell for scripting

For deploying across multiple PCs.

  1. For automated reset (e.g., kiosk image, fresh user setup):
    Remove-Item -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\ControlCenter" -Recurse -Force
  2. For all users on PC (per-user keys): script must run for each user account. Or run in user logon script.
  3. For specific tile addition via registry: layout is binary blob in QuickActions subkey. Editing manually is fragile. Use the UI for changes.
  4. 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.
  5. For Intune-managed: deploy via Configuration Profile with registry settings. Note: ControlCenter values change between Windows builds. Validate per-build.
  6. 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.

ADVERTISEMENT