That little "Learn more about this picture" label on your desktop is the kind of thing that shouldn't bother you but absolutely does. You've tried to remove learn more about this picture before — switched wallpapers, rebooted, maybe poked at settings — and it keeps coming back. If you landed here from Facebook wondering if "Learn More about this picture" is some new social media thing, it's not: that's automatic alt text, an accessibility feature for screen readers. This guide covers the Windows desktop icon.
Here's the good news: that icon isn't a virus, isn't adware, and isn't a sign your PC is compromised. It's a Windows Spotlight feature with a simple solution. In fact, there are five ways to get rid of it — from a thirty-second settings tweak to a permanent registry fix that works even on unactivated Windows. I'll walk you through each one.
What Exactly Is 'Learn More About This Picture' on Windows?
The Windows Spotlight Connection
Windows Spotlight is Microsoft's built-in photo shuffle. It pulls high-quality landscape, wildlife, and architecture photos from Bing and rotates them as your desktop wallpaper automatically. When Spotlight is active, Windows places a small "Learn more about this picture" label — sometimes phrased "Learn about this picture" on certain builds, which doesn't help the confusion — in the corner of your desktop. Click it, and you get a Bing search page with details about that specific photo.
So, why does learn more about this picture appear at all? Because it's a shortcut. Nothing more. It's not a tracking mechanism, not a cryptominer notification, and definitely not something to be scared of. The icon only shows up when your background is set to Windows Spotlight. Switch to Picture, Slideshow, or Solid Color, and the label vanishes on its own.
I've seen users genuinely panic over this. One client of mine was convinced the icon was a sign of malware and wanted a full antivirus sweep before I could explain what it was. A quick check of the Background settings settled it in about ten seconds.
How This Differs from Facebook's 'Learn More' Automatic Alt Text
Here's where the internet gets muddy. Facebook also displays "Learn More about this picture" on photos — but that's automatic alt text, generated by Facebook's image recognition software to help screen reader users understand what's in a photo. It's an accessibility feature, and it appears on the photo itself as a caption-like overlay when you're viewing it in your feed or album.
The Windows icon and the Facebook label are entirely different things. Facebook's version relates to photo accessibility; the Windows version is a desktop link to Bing. If you're trying to remove the Facebook label, you'd edit the photo's alt text settings, not your registry. Just so we're on the same page: this guide is about the Windows desktop icon only.
Quick Fix: How to Remove 'Learn More About This Picture' via Settings
Switch Your Background from Windows Spotlight to a Picture
If you want the icon gone in the next thirty seconds, this is the method:
- Right-click an empty spot on your desktop and select Personalize.
- Under Background, change Windows Spotlight to Picture or Solid color.
- Done. The icon disappears immediately.
If right-clicking doesn't work on your system, press Win + I to open Settings, then go to Personalization > Background. In Windows 11, the dropdown sits at the top of the page. In Windows 10, it's essentially the same layout.
The obvious trade-off: you lose the rotating Spotlight wallpapers. If that's fine by you, stop here. If you actually like the changing photos but hate the label, skip ahead to the registry method.
What If Your Build Supports Right-Click Removal?
On some Windows 11 builds, you can right-click the "Learn more about this picture" icon directly and choose Delete or Remove from desktop from the context menu.
Here's the catch: in my experience, that's often a temporary fix. The icon tends to come back after the next Spotlight image refresh or a Windows update. And on many Windows 10 installs and older Windows 11 builds, the option is grayed out or missing entirely. If that's your situation, proceed to the permanent methods below.
How to Remove the Icon Permanently with Registry Editor (Windows 10 & 11)
The Exact Registry Key and CLSID
This is my recommended approach for anyone who wants a long-term fix. It works on both Windows 10 and Windows 11, it's free of third-party tools, and it survives restarts and updates.
-
Press Win + R, type
regedit, and hit Enter. -
Paste this path into the Registry Editor address bar:
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\NewStartPanel -
In the right pane, right-click and select New > DWORD (32-bit) Value.
-
Name it exactly:
{2cc5ca98-6485-489a-920e-b3e88a6ccce3} -
Double-click the new value, set Value data to
1, and click OK.
A value of 1 hides the icon. A value of 0 brings it back. The CLSID is the unique identifier Windows uses to track that specific desktop icon.
How to Back Up Your Registry Before Editing
Before you change anything, back up the key. Right-click the NewStartPanel folder in the left pane, select Export, and save the .reg file somewhere you'll remember.
If you ever want the icon back — or something goes sideways — double-click that file to restore everything as it was.
A note of caution from hard-won experience: copy the CLSID exactly. In the countless times I've helped people troubleshoot this, typos in the value name are the single most common reason the registry method "doesn't work." One mistyped digit, and Windows simply ignores the entry.
How to Verify the Icon Is Really Gone
After setting the DWORD to 1, restart Explorer or sign out and back in. In most cases, the icon disappears immediately after the desktop refreshes. If it lingers, the troubleshooting section at the end covers what to check next.
How to Remove 'Learn More About This Picture' with PowerShell (One-Liner)
The Copy-Paste Command
Prefer working from the command line? This one-liner does exactly what the registry method does, minus the clicking:
- Right-click the Start button and select Windows Terminal (Admin) or PowerShell (Admin).
- Paste this and press Enter:
$regPath = "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\NewStartPanel"
$clsid = "{2cc5ca98-6485-489a-920e-b3e88a6ccce3}"
If (!(Test-Path $regPath)) { New-Item -Path $regPath -Force | Out-Null }
Set-ItemProperty -Path $regPath -Name $clsid -Value 1
To restore the icon later, change -Value 1 to -Value 0 and run it again.
I've leaned on this exact script in remote troubleshooting sessions more times than I can count. It's silent, fast, and you don't have to navigate menus or explain to a user how to open Registry Editor.
How to Deploy to Multiple PCs with Intune or RMM
For IT pros managing fleets of machines, the PowerShell method scales cleanly. You can push it as a startup script, a scheduled task, or an Intune remediation rule. The script works on Windows 10 and 11, activated or not.
One thing to keep in mind with RMM tools: the script runs in the agent's context, which is typically SYSTEM. The registry path under HKCU targets the logged-in user, so in multi-user environments, make sure the script runs as a logon script or via Group Policy preferences to hit every user profile. Otherwise, you'll hide the icon for the first user who logs in, and the next user who signs in will still see it.
Disable 'Learn More About This Picture' via Group Policy (Pro/Enterprise)
Step-by-Step in gpedit.msc
Group Policy is the permanent, centralized approach for organizations. It's only available on Windows Pro, Enterprise, or Education editions — if you're on Windows Home, you won't have gpedit.msc, so use the registry or PowerShell methods instead.
Here's how to set it up:
- Press Win + R, type
gpedit.msc, and press Enter. - Navigate to User Configuration > Preferences > Windows Settings > Registry.
- Right-click Registry and select New > Registry Item.
- Configure these values:
| Setting | Value |
|---|---|
| Action | Update |
| Hive | HKEY_CURRENT_USER |
| Key Path |
Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\NewStartPanel| | Value Name |{2cc5ca98-6485-489a-920e-b3e88a6ccce3}| | Value Type | REG_DWORD | | Value Data | 1 | - Click OK, then open Command Prompt and run
gpupdate /forceto apply immediately.
Deploying to the Whole Organization with Active Directory
In an Active Directory environment, link the GPO to the organizational units that contain your target users. Use security filtering if you only want to apply the change to specific groups. Once enforced, the policy survives restarts, Spotlight refreshes, and feature updates — the icon won't come back unless someone deliberately flips the policy off. That's the setup I'd recommend for any managed environment with more than a handful of machines.
How to Remove 'Learn More About This Picture' on Unactivated Windows
Why Unactivated Windows Blocks the Settings Route
Here's a scenario I run into more often than you'd expect: a laptop on a recycled Windows install, a dev VM on an expired evaluation license, a machine waiting on a volume license key. On unactivated Windows, Settings > Personalization > Background is grayed out. Microsoft locks wallpaper changes behind activation.
The quick settings fix simply won't work on those systems.
The Registry Workaround That Works Without Activation
The registry method, however, doesn't care about activation status at all.
Open regedit and navigate to the same path from Section 3:
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\NewStartPanel
If the path doesn't exist — and on clean machines it often doesn't — create the folders manually. Right-click Explorer, choose New > Key, name it HideDesktopIcons, then create a subkey under it called NewStartPanel.
Add the DWORD with the CLSID {2cc5ca98-6485-489a-920e-b3e88a6ccce3}, set it to 1, and you're done. No activation required.
One honest caveat: this removes the desktop icon only. If you're also seeing "Learn more" text on the lock screen, that's a separate Spotlight setting and won't be affected by this registry key.
Bonus: Save the Windows Spotlight Wallpaper Instead of Removing the Icon
Where Windows Stores Spotlight Images
Before you say goodbye to those gorgeous Bing photos, here's a trick that pays off: Windows stores every Spotlight wallpaper locally, in full resolution.
Open File Explorer and paste this path:
%LocalAppData%\Packages\Microsoft.Windows.ContentDeliveryManager_cw5n1h2txyewy\LocalState\Assets
You'll see a list of files with no file extension. That's intentional — they're raw image files. Sort by size: the files over 150KB are typically the actual wallpapers, often at 1920x1080 or higher. The small files are usually thumbnails or UI assets you can ignore.
How to Rename and Set as a Persistent Wallpaper
Copy the large files to a folder of your choice and append .jpg to the filenames. If you'd rather automate it, this PowerShell snippet handles the copy and rename in one go:
New-Item -ItemType Directory -Path "C:\SpotlightWallpapers" -Force
Get-ChildItem "$env:LocalAppData\Packages\Microsoft.Windows.ContentDeliveryManager_cw5n1h2txyewy\LocalState\Assets" |
Where-Object { $_.Length -gt 150KB } |
Copy-Item -Destination "C:\SpotlightWallpapers" -Force
Get-ChildItem "C:\SpotlightWallpapers" | Rename-Item -NewName { $_.Name + ".jpg" }
Right-click a renamed file, select Set as desktop background, and you've got that stunning Spotlight aesthetic — minus the "Learn more" label.
Troubleshooting: Why Does 'Learn More About This Picture' Keep Coming Back?
Icon Returns After Restart
If you applied the registry fix and the icon still reappears after a reboot, something is overriding your change. The usual suspects: a login script, an enforced Group Policy, or an endpoint management tool re-applying its own configuration at startup.
Re-apply the registry key, then check what policies are in effect with:
gpresult /r
If a GPO is overwriting your setting, you'll need to modify the policy itself rather than fight it manually.
Registry Key Doesn't Exist or Has No Effect
Two things to verify. First, make sure you're editing under HKEY_CURRENT_USER, not HKEY_LOCAL_MACHINE — this setting lives per user. Second, double-check the CLSID is exactly {2cc5ca98-6485-489a-920e-b3e88a6ccce3}. If the HideDesktopIcons\NewStartPanel key path didn't exist, you need to create it manually before the DWORD will take effect. Then sign out and back in to force a desktop refresh.
Spotlight Stops Working After You Change the Background
This one trips up a lot of people. Removing the icon alone does not disable Windows Spotlight — the icon is just a link to Bing. But if you use Method 1 (switching your background from Spotlight to Picture or Solid Color), that explicitly turns off Spotlight for the desktop. The lock screen may continue using Spotlight independently, which is why you might still see "Learn more" text there.
If you want the rotating wallpaper and a clean desktop, use the registry or PowerShell method instead of changing your background type.
FAQ
How do I delete the 'Learn About This Picture' icon?
The fastest method: right-click your desktop, choose Personalize, and change Background from Windows Spotlight to Picture or Solid color. The icon disappears instantly. For a permanent fix that keeps Spotlight, use the registry method: go to HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\NewStartPanel, create a DWORD named {2cc5ca98-6485-489a-920e-b3e88a6ccce3}, and set it to 1.
What is 'Learn More About This Picture' in Windows 11?
It's a desktop icon created by Windows Spotlight, the feature that automatically rotates your wallpaper with photos from Bing. Clicking the icon opens a Bing search page with details about the current photo. It's not a virus or ad — it appears only when your desktop background is set to Windows Spotlight.
How can I find out what the Windows Spotlight picture is?
Click the "Learn more about this picture" icon on your desktop — it opens a Bing search with background info on the photo. Alternatively, locate the cached image in the local Assets folder explained in the Bonus section, then use a reverse image search or check the file metadata to find the photographer and location.
Does removing the icon disable Windows Spotlight?
No. Hiding the icon only removes the link. Spotlight continues to rotate wallpapers in the background. The only way removing the icon disables Spotlight is if you switch your background away from Spotlight entirely, which stops the feature for your desktop.
How do I remove 'Learn More About This Picture' without activating Windows?
Use the registry method. Open Registry Editor, navigate to the HideDesktopIcons\NewStartPanel path, create the DWORD with the CLSID {2cc5ca98-6485-489a-920e-b3e88a6ccce3}, and set it to 1. It works without activation and without touching the grayed-out Settings page.
Final Thoughts
There's a method for every situation here. The Settings toggle when you're in a hurry. The registry key when you want a permanent fix. The PowerShell one-liner for automation and remote sessions. Group Policy when you're managing an organization. And the unactivated-Windows workaround when the GUI is locked down.
My honest recommendation? If you enjoy Spotlight's rotating photos, go with the registry method. Thirty seconds of setup and you'll never think about that icon again. If you're managing a fleet, the PowerShell script or GPO route is the professional call.
And if you came searching for "remove learn more about this picture" because you thought it was a Facebook thing, I hope the distinction makes sense now. The Windows fix is above — and for Facebook, it's a matter of editing alt text in the photo settings, which is a completely different guide.
Found this useful? Share it with someone who's still wrestling with that stubborn icon. Or if you've discovered a workaround I didn't cover, drop it in the comments — I read every one, and the good ones get shared back out.