Skip to content
Follow
Windows

How to Add or Remove “Explore background” Desktop Context Menu in Windows 11

Richard
Written by
Richard
Apr 12, 2026 Updated Aug 12, 2026 3 min read
How to Change HDR or SDR Content Brightness for HDR Display in Windows 11
How to Change HDR or SDR Content Brightness for HDR Display in Windows 11

The “Explore background” option in the Windows 11 desktop context menu opens the hidden folder where Windows Spotlight saves its daily lock screen photos. Windows Spotlight downloads these images to 📁C:\Users\[YourUsername]\AppData\Local\Packages\Microsoft.Windows.ContentDeliveryManager_cw5n1h2txyewy\LocalState\Assets, but finding that path manually takes too much time.

You can add or remove this quick shortcut from your right-click menu by making a few simple changes in the Windows Registry, which is the built-in database Windows uses to store system settings. You just need an administrator account on your PC to complete these steps.

⚡ Quick Answer

Modify the Windows Registry to add or remove the “Explore background” option. Open Windows Terminal and use `reg delete` or `reg add` commands targeting specific registry keys under `🗝️HKEY_CURRENT_USERSoftwareClassesDesktopBackgroundshell.SpotlightLearnMore` or `🗝️HKEY_CLASSES_ROOTDesktopBackgroundShell.SpotlightLearnMore`.

Why This Matters

Windows 11 includes an “Explore background” option in the desktop right-click menu that shows wallpaper details, specifically for Windows Spotlight images.

What Happens When Done

Following these steps makes the “Explore background” option appear or disappear from the right-click desktop menu.

Windows 11 desktop context menu showing Explore background option
Windows 11 desktop context menu showing Explore background option

Option 1Current User Only

Removing the shortcut exclusively for a single user account takes a quick command inside the Windows Terminal app.

  1. Open the Windows Terminal app.
  2. Run this command: reg delete "HKEY_CURRENT_USER\Software\Classes\DesktopBackground\shell.SpotlightLearnMore" /v ProgrammaticAccessOnly /f

Remove “Explore background” Context Menu for Current User

  1. Open the Windows Terminal app.
  2. Run this command: reg add "HKEY_CURRENT_USER\Software\Classes\DesktopBackground\shell.SpotlightLearnMore" /v ProgrammaticAccessOnly /t REG_SZ /d "" /f

Option 2All Users on Your Computer

Adding the "Explore background" desktop context menu for every user on a Windows 11 PC requires launching Windows Terminal with administrative privileges before executing the command.

Add "Explore background" Desktop context menu for All Users

Launch Windows Terminal as an administrator, then execute the following command:

🗝️Registry
reg add "HKEY_CLASSES_ROOT\DesktopBackground\Shell.SpotlightLearnMore" /v CommandStateSync /t REG_SZ /d "" /f
reg add "HKEY_CLASSES_ROOT\DesktopBackground\Shell.SpotlightLearnMore" /v ExplorerCommandHandler /t REG_SZ /d "{5C6B744C-4CD1-5EA7-BDC6-0E6679A956BF}" /f
reg add "HKEY_CLASSES_ROOT\DesktopBackground\Shell.SpotlightLearnMore" /v Position /t REG_SZ /d "Bottom" /f
⚠️Warning
Remove "Explore background" Desktop context menu for All Users
  1. Open Registry Editor by typing regedit.exe in your search bar.
  2. In the left pane, navigate to this location: HKEY_CLASSES_ROOT\DesktopBackground\Shell\.SpotlightLearnMore
  3. Important: You need admin privileges to change the owner and permissions. Right-click on the .SpotlightLearnMore key and select Properties.
  4. Click the Owner tab. Click Edit, then change the owner to Administrators. Click OK.
  5. Go to the Permissions tab. Select Administrators and check the box for "Full Control". Click OK.
  6. You can now close Registry Editor.
Removed Explore background option from Windows 11 context menu
Removed Explore background option from Windows 11 context menu

Deleting the registry key .SpotlightLearnMore finishes the task. Restarting Explorer or the PC applies the changes.

🗝️Registry
reg delete "HKEY_CLASSES_ROOT\DesktopBackground\Shell.SpotlightLearnMore" /f

Summary

The "Explore background" option toggles on or off depending on whether the configuration applies to an individual user or all system accounts.

What is the Explorer context menu?

The Explorer context menu displays the list of choices appearing during a right-click on any file, folder, or the desktop.

How do I get the old Explorer context menu in 🪟 Windows 11?

Restoring the classic Explorer context menu in Windows 11 requires a registry modification or a third-party utility.

How do I edit the Explorer context menu?

Editing the Explorer context menu involves altering Windows Registry keys or utilizing dedicated software.

How do I go back to the old context menu?

Reverting to the older context menu style requires running a specific command inside an elevated Command Prompt window.

Was this guide helpful?

Tags: #Windows 11
Was this helpful?
Richard

About the Author

Richard

Tech Writer, IT Professional

Richard, a writer for Geek Rewind, is a tech enthusiast who loves breaking down complex IT topics into simple, easy-to-understand ideas. With years of hands-on experience in system administration and enterprise IT operations, he’s developed a knack for offering practical tips and solutions. Richard aims to make technology more accessible and actionable. He's deeply committed to the Geek Rewind community, always ready to answer questions and engage in discussions.

📚 Related Tutorials

How to Set Windows Spotlight as Desktop Wallpaper
Windows How to Set Windows Spotlight as Desktop Wallpaper
How to Change Windows Terminal Themes
Windows How to Change Windows Terminal Themes
How to Change Tab Colors in Windows Terminal
Windows How to Change Tab Colors in Windows Terminal
Change Windows Terminal Startup Behavior in Windows 11
Windows Change Windows Terminal Startup Behavior in Windows 11

No comments yet — be the first to share your thoughts!

Leave a Comment

Your email address will not be published. Required fields are marked *