You have customized the Quick Settings panel in Windows 11 by adding or rearranging icons such as Bluetooth, VPN, or a custom shortcut. After a system restart or a Windows Update, those icons disappear and the layout resets to the default set of controls. This behavior is caused by a combination of how Windows 11 stores per-user Quick Settings preferences and how certain system events trigger a cache reset. This article explains the technical root cause of the icon loss, provides step-by-step instructions to restore and lock your custom layout, and covers related failure patterns that can cause the same problem.
Key Takeaways: Quick Settings Icon Loss on Windows 11
- Settings > Personalization > Taskbar > Quick Settings: Direct access to toggle and reorder icons, but changes are stored in a volatile user profile cache.
- Windows Registry path HKEY_CURRENT_USER\Control Panel\QuickActions: Stores the actual icon order and enabled state; a corrupted or missing key causes a reset.
- Windows Update or Group Policy refresh: Triggers a reinitialization of the Quick Actions data, overwriting customizations with the default set.
Why Windows 11 Quick Settings Icons Reset to Default
Windows 11 stores the Quick Settings layout in two places: a registry key under HKEY_CURRENT_USER\Control Panel\QuickActions and a cached binary file in the user profile directory at %LocalAppData%\Packages\Windows.Client.CBS_cw5n1h2txyewy\LocalCache. The operating system reads this data at sign-in to populate the Quick Settings panel. When a Windows Update installs a new version of the Action Center component, or when a Group Policy refresh runs, Windows reinitializes the Quick Actions data store. This reinitialization overwrites the custom layout with the factory default set of icons — Wi-Fi, Bluetooth, Airplane Mode, and Accessibility. Additionally, if the user profile cache becomes corrupted due to a failed update or a disk error, Windows falls back to the default layout on the next sign-in. The reset does not delete the underlying registry key entirely, but it replaces the ordered list with the default sequence, causing your custom icons to appear missing.
The Role of the QuickActions Registry Key
The registry key QuickActions contains a binary value named QuickActionsList that holds the GUIDs of the enabled icons in display order. When you drag a new icon into the Quick Settings flyout, Windows writes the updated GUID sequence to this binary value. A Windows Update that modifies the Action Center binary can reset this value back to the original GUID list. You can verify this by exporting the registry key before and after a known update and comparing the two files.
Profile Corruption from Disk Cleanup or Storage Sense
Windows 11’s Storage Sense feature can delete temporary user profile cache files, including the Quick Settings layout cache. If the cache is removed while the registry key remains intact, Windows may still rebuild the layout from a default template stored in the system image. This results in the same icon loss even though the registry key was not modified.
Steps to Restore and Lock Your Custom Quick Settings Layout
Follow these steps to restore your custom icons and prevent the layout from resetting after future updates.
- Open Quick Settings and add your preferred icons
Press Windows key + A to open Quick Settings. Click the pencil icon to enter edit mode. Click Add and select each icon you want from the list — for example, VPN, Night Light, or Focus Assist. Drag icons to reorder them. Click Done to save the layout. - Export the QuickActions registry key as a backup
Press Windows key + R, typeregedit, and press Enter. Navigate toHKEY_CURRENT_USER\Control Panel\QuickActions. Right-click the QuickActions folder and select Export. Save the file asQuickActions-Backup.regto your Desktop or a cloud folder. - Disable Storage Sense for temporary cache files
Go to Settings > System > Storage > Storage Sense. Under Cleanup of temporary files, set Delete temporary files that my apps aren’t using to Never. This prevents Storage Sense from removing the Quick Settings cache file. - Block Windows Update from resetting the layout using Group Policy
Only available on Windows 11 Pro, Enterprise, or Education. Press Windows key + R, typegpedit.msc, and press Enter. Navigate to Computer Configuration > Administrative Templates > Windows Components > Action Center. Double-click Turn off notification and action center. Set it to Not Configured and click OK. This prevents the Action Center from reinitializing its data store during updates. - Create a scheduled task to restore the backup after updates
Open Task Scheduler from the Start menu. Click Create Task. On the General tab, name itRestore Quick Settings Layoutand select Run whether user is logged on or not. On the Triggers tab, click New, set Begin the task to At startup, and click OK. On the Actions tab, click New, set Action to Start a program, and in Program/script typeregedit.exe. In Add arguments type/s C:\Users\YourUsername\Desktop\QuickActions-Backup.reg. ReplaceYourUsernamewith your actual user name. Click OK to save the task. This imports your backup registry file on every boot, overriding any reset caused by an update.
Related Issues That Cause Quick Settings Icon Loss
Quick Settings Icons Missing After a Windows Update on Windows 11
This is the most common scenario. A cumulative or feature update reinitializes the Quick Actions data store. After the update completes, the Quick Settings panel shows only the default icons. To fix this, run the registry backup import from the scheduled task described above. If you did not create a backup, manually re-add your icons through Quick Settings edit mode.
Quick Settings Layout Resets After Signing Out and Signing Back In
This points to a corrupted user profile cache. Press Windows key + R, type %LocalAppData%\Packages\Windows.Client.CBS_cw5n1h2txyewy\LocalCache, and press Enter. Delete all files in this folder. Then open Command Prompt as administrator and run sfc /scannow to repair system files. Restart your PC and reconfigure your Quick Settings icons. The cache will rebuild correctly.
Quick Settings Icons Not Saving After Using Storage Sense
Storage Sense removes the temporary cache file that stores the Quick Settings layout. Set Storage Sense to never delete temporary files as shown in Step 3 above. Then manually re-add your icons. The layout will persist across reboots as long as Storage Sense does not delete the cache again.
Quick Settings Layout Reset: Manual Restore vs Scheduled Task Import
| Item | Manual Restore via Quick Settings Edit Mode | Scheduled Task Registry Import |
|---|---|---|
| Time required | 2 to 5 minutes each time a reset occurs | 10 seconds to set up once; no further action needed |
| Persistence after Windows Update | No — you must re-add icons after every update | Yes — the task imports the backup at every boot |
| Works on Windows 11 Home | Yes | Yes — Group Policy step is skipped, but the scheduled task still works |
| Risk of data loss | None | Low — only modifies the QuickActions registry key |
| Requires backup creation | No | Yes — you must export the registry key once |
After applying the steps in this guide, you can restore your custom Quick Settings layout and prevent it from resetting after Windows Update or Storage Sense runs. To further protect your customizations, consider exporting the QuickActions registry key to a OneDrive folder so you can restore it on a different PC. For advanced users, the same registry key can be deployed via Group Policy to enforce a standard Quick Settings layout across all devices in an organization.