How to Remove Learn About This Picture from Desktop in Win 10/11

Learn how to remove the Learn About This Picture icon from your Windows 10 or 11 desktop in under 2 minutes. 5 proven methods with step-by-step instructions.

Is that "Learn about this picture" icon cluttering your pristine desktop wallpaper? You're not alone. It's one of those small Windows quirks that seems harmless at first—until you notice it sitting there every single day, breaking the clean look of your carefully chosen background. The good news? You can get rid of it in under two minutes, and you don't need to be a tech wizard to do it.

This guide walks you through every proven method to remove the "Learn about this picture" icon from your desktop, whether you're running Windows 10 or Windows 11. I'll start with the simplest approach and work up to more advanced techniques for those who want a permanent fix. Along the way, I'll also clear up a common misconception: this icon is not a virus, and understanding what it actually is will help you decide which removal method suits you best.


Smooth gradient waves in pastel colors create a modern abstract art design.

Why Does "Learn About This Picture" Keep Appearing on My Desktop?

Before we dive into the fixes, it helps to understand what you're dealing with. That little icon isn't random—it's tied to a specific Windows feature, and knowing how they connect will make the removal process much clearer.

The Link Between the Icon and Windows Spotlight

Windows Spotlight is Microsoft's built-in feature that automatically rotates your desktop wallpaper with stunning photography from around the world. Think of it as a screensaver that never sleeps—except it's your actual desktop background, refreshing every day or so with a new image.

When Spotlight is active, Windows places a small shortcut on your desktop: "Learn about this picture." Clicking it opens a Bing search page with details about the current wallpaper—the photographer, the location, and sometimes a bit of history. It's a neat feature if you're curious about that breathtaking shot of the Swiss Alps. But if you're not interested, it's just visual noise.

The icon is essentially a byproduct of Spotlight. No Spotlight, no icon. That's the core relationship to remember.

Is the "Learn About This Picture" Icon a Virus or Malware?

I've seen this question come up repeatedly in forums, and I understand why. A mysterious icon appearing on your desktop with no obvious way to remove it? That feels like malware behavior.

Here's the truth: it's completely legitimate. The icon is a built-in component of Windows, created by Microsoft itself. It doesn't behave erratically, it doesn't consume system resources, and it doesn't try to trick you into clicking it. Unlike actual malware—which might redirect you to sketchy websites or bombard you with pop-ups—this icon simply opens a Bing search page when clicked.

One way to verify this yourself: check where the icon points. Right-click it and look at the properties. You'll see it's associated with a system-level Windows component, not some random executable in your Downloads folder. If you're still uneasy, run a quick Windows Defender scan—it'll come back clean, I promise.


An elegant smartphone on a dark background, emphasizing modern tech design.

How to Disable the "Learn About This Picture" Icon via Windows Settings

If you're looking for the quickest, safest way to banish this icon, the Settings app is your friend. No registry edits, no command lines—just a few clicks and it's gone.

Method 1: Switch Your Desktop Background (Easiest & Safest)

This is the method I recommend to friends and family who just want the icon gone without any fuss. It takes about thirty seconds.

Step 1: Right-click anywhere on your desktop and select Personalize from the context menu.

Step 2: In the Personalization settings, look for the Background dropdown menu. It's usually at the top of the page.

Step 3: Click the dropdown and select either Picture or Solid color. Any option other than "Windows Spotlight" will do.

Step 4: If you chose "Picture," pick an image from the available options or browse to your own. If you chose "Solid color," pick any color you like.

That's it. The moment you switch away from Spotlight, the "Learn about this picture" icon disappears. It won't come back unless you manually re-enable Spotlight for your desktop background.

The trade-off here is obvious: you lose the rotating Spotlight wallpapers. If you're someone who enjoys fresh photography every day, this method might feel like throwing the baby out with the bathwater. But if you prefer a static background anyway, this is the cleanest solution.

Method 2: Use the Context Menu (For Specific Windows 11 Builds)

Some Windows 11 builds—particularly newer ones—offer a more direct approach. Microsoft has started adding a context menu option to the icon itself, allowing you to remove it without touching any settings.

Step 1: Right-click directly on the "Learn about this picture" icon on your desktop.

Step 2: Look for an option that says Delete or Remove from desktop in the context menu.

Step 3: Click it, and the icon vanishes.

A quick note: this method isn't available on all systems. In my testing, it worked on Windows 11 version 23H2 and later, but older builds and Windows 10 don't have this option. If you don't see it in the context menu, don't worry—the other methods in this guide will work just fine.


Advanced Methods: Remove the Icon Using Registry Editor and PowerShell

For those who want more control—or who need to remove the icon while keeping Spotlight active—the advanced methods are where things get interesting. These approaches target the icon specifically, leaving your wallpaper rotation untouched.

Method 3: The Definitive Registry Editor Fix

The registry method is the most reliable way to hide the icon while keeping Windows Spotlight fully functional. It works on both Windows 10 and Windows 11, and it's the approach I use when I want the best of both worlds.

⚠️ Important warning: Editing the registry carries some risk. A wrong entry can cause system instability, so please back up your registry before proceeding. In the Registry Editor, go to File → Export, choose a location, and save a backup. It takes ten seconds and could save you a headache.

Step 1: Press Win + R to open the Run dialog box. Type regedit and press Enter.

Step 2: Navigate to the following path. You can paste it directly into the address bar at the top of the Registry Editor window:

HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\NewStartPanel

Step 3: Right-click on the empty space in the right pane, select New → DWORD (32-bit) Value.

Step 4: Name the new value exactly as follows (including the curly braces):

{2cc5ca98-6485-489a-920e-b3e88a6ccce3}

Step 5: Double-click the new value, set Value data to 1, and click OK.

The value 1 hides the icon. If you ever want to bring it back, change the value to 0 or delete the entry entirely.

One thing I appreciate about this method: it's surgical. It doesn't touch any other settings, doesn't disable Spotlight, and doesn't affect your lock screen. The icon simply stops appearing, and your wallpaper keeps rotating as if nothing happened.

Method 4: One-Click Removal with a PowerShell Script

If you're comfortable with a command line—or if you're an IT admin managing multiple machines—PowerShell offers the fastest route. This script automates the registry change from Method 3, so you get the same result without clicking through the Registry Editor.

Step 1: Open PowerShell as administrator. Press Win + S, type "PowerShell," right-click on "Windows PowerShell," and select Run as administrator.

Step 2: Copy and paste the following script into the PowerShell window, then 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
}

Set-ItemProperty -Path $regPath -Name $clsid -Value 1

Step 3: The script runs instantly. You won't see a confirmation message, but the icon should disappear from your desktop immediately.

To restore the icon later, change the last line to Set-ItemProperty -Path $regPath -Name $clsid -Value 0 and run the script again.

This is my go-to method when I'm setting up multiple machines. It's repeatable, it's fast, and it doesn't require any manual registry navigation. For IT admins, this script can also be deployed via Group Policy or endpoint management tools to standardize the experience across an entire fleet of devices.


How to Stop "Learn About This Picture" from Coming Back Permanently

You've removed the icon, but a nagging thought remains: will it come back? In most cases, no—but there are scenarios where the icon can reappear, especially after Windows updates or if a third-party theme resets your settings. Here's how to make the removal stick.

Method 5: Enforce the Setting via Group Policy (For Windows Pro & Enterprise)

If you're running Windows Pro, Enterprise, or Education, Group Policy provides the most robust solution. It's particularly useful in managed environments where you need to enforce settings across multiple users or machines.

Step 1: Press Win + R, type gpedit.msc, and press Enter to open the Group Policy Editor.

Step 2: Navigate to User Configuration → Preferences → Windows Settings → Registry.

Step 3: Right-click on "Registry" in the left pane, select New → Registry Item.

Step 4: Configure the new item with these settings:

  • 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

Step 5: Click OK to save the policy.

Step 6: Open a command prompt and run gpupdate /force to apply the changes immediately.

The beauty of Group Policy is that it re-applies the setting automatically. Even if something tries to overwrite the registry value, the policy enforcement kicks in and restores it. For IT admins, this is the difference between a one-time fix and a permanent solution.

Troubleshooting: Why Does the Icon Keep Returning?

If you've tried the registry method and the icon still comes back after a restart, here are the most common culprits:

Check your registry entry. Make sure the value name is spelled exactly right, including the curly braces. A single typo—a missing brace, an extra space—will render the entry useless. I've seen this happen more times than I can count.

Verify you're looking at the correct registry path. The HideDesktopIcons\NewStartPanel path is specific. If you accidentally placed the value under a different key, it won't work.

Consider Group Policy. If you're on a managed device, your organization's IT policies might be overwriting your local settings. In that case, the Group Policy method above is your best bet.

Check for third-party themes. Some custom theme packs include their own registry modifications that can re-enable the icon. If you're using a third-party theme, try switching back to a default Windows theme and see if the icon stays gone.


What Happens to Windows Spotlight After I Remove the Icon?

This is the question I get most often from users who love Spotlight's rotating wallpapers but hate the icon. The answer depends entirely on which method you used.

The Impact on Your Desktop Wallpaper and Lock Screen

Here's a breakdown of what each removal method does to Spotlight:

MethodDesktop WallpaperLock ScreenIcon
Change background to Picture/Solid colorSpotlight disabledUnaffectedRemoved
Registry Editor (DWORD = 1)Spotlight stays activeUnaffectedHidden
PowerShell scriptSpotlight stays activeUnaffectedHidden
Group PolicySpotlight stays activeUnaffectedHidden
The key distinction: the registry, PowerShell, and Group Policy methods only hide the icon. They don't touch the Spotlight feature itself. Your desktop wallpaper will continue to rotate with new images, and you'll still see Spotlight's lock screen content if you have that enabled.

The Settings method (changing your background) is the only one that disables Spotlight for the desktop. If you choose this route, your lock screen can still use Spotlight independently—just go to Settings → Personalization → Lock screen and select "Windows Spotlight" there.

In my experience, most people want the icon gone but the wallpapers to stay. If that sounds like you, the registry or PowerShell method is the way to go.


Frequently Asked Questions

How do I remove the "Learn about this picture" icon from my desktop?

The three most effective methods are: (1) Change your desktop background to a Picture or Solid color via Settings, which removes the icon but disables Spotlight; (2) Use the Registry Editor to add a DWORD value that hides the icon while keeping Spotlight active; or (3) Run a PowerShell script that automates the registry change. For detailed steps, see the corresponding sections above.

Is "Learn about this picture" a virus or malware?

No. It's a legitimate feature of Windows Spotlight, Microsoft's built-in wallpaper rotation system. The icon is a shortcut that links to Bing search results about the current wallpaper image. It's safe, doesn't consume system resources, and behaves predictably. If you're concerned, run a Windows Defender scan—it will confirm the icon is harmless.

Can I remove the icon without disabling Windows Spotlight?

Yes. The Registry Editor and PowerShell methods hide the icon while leaving Spotlight fully functional. Your desktop wallpaper will continue to rotate with new images, and the icon simply won't appear. The Settings method (changing your background) is the only approach that disables Spotlight for the desktop.

Why does the "Learn about this picture" icon keep coming back?

The most common reasons are: an incorrectly entered registry value (check for typos in the CLSID), a third-party theme that resets the setting, or Group Policy enforcement from an organization's IT department. For a permanent fix, use the Group Policy method if you're on Windows Pro or Enterprise, or double-check your registry entry against the exact path and value name provided in this guide.


Final Thoughts

Removing the "Learn about this picture" icon is one of those small quality-of-life improvements that makes your desktop feel truly yours. Whether you choose the simple Settings approach, the surgical registry edit, or the automated PowerShell script, the solution takes less than five minutes and requires no special skills.

My personal recommendation? If you enjoy Spotlight's rotating wallpapers, use the registry or PowerShell method. You get the best of both worlds—beautiful photography without the visual clutter. If you prefer a static background anyway, the Settings method is perfectly sufficient.

Whichever route you take, remember to back up your registry before making changes, and don't hesitate to revisit this guide if the icon ever makes an unwelcome return.

Found this guide helpful? Share it with a friend who's also struggling with this pesky icon. If you have any other tips or questions, leave a comment below—I'd love to hear how it went for you.

← Back to Home