Share via

Desktop icons I would like to remove.

Anonymous
2025-11-02T00:38:14.65+00:00

A couple weeks ago, a number of icons (system icons) showed up on my desktop. Don't know why. Probably did something unknowingly I wasn't supposed to do. Didn't purposely do anything to encourage them, like turn on a theme or anything like that. Doing things that Copilot suggested got rid of a number of them, but these still remain:

User's image

Can anyone suggest how I might rid my desktop of these icons?

Windows for home | Windows 11 | Desktop, Start, and personalization | Desktop
0 comments No comments

Answer recommended by moderator

Kimberly Olaño 23,555 Reputation points
2025-11-04T10:54:57.1533333+00:00

Gallery seems to be a bit of a moving target. Try this final script:

$keys = @(

"HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\NewStartPanel",

"HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\ClassicStartMenu"

)

$clsids = @(

"{24AD3AD4-A569-4530-98E1-AB02F9417AA8}", # Gallery (new Photos hub)

"{E88865EA-0E1C-4E20-9AA6-EDCD0212C87C}", # Gallery alternate (File Explorer)

"{3ADD1653-EB32-4CB0-BBD7-DFA0ABB5ACCA}", # Pictures legacy

"{B155BDF8-02F0-451E-9A26-4197FDAD9EA6}", # Shell Gallery variant (Win11 test builds)

"{E25B5812-BE88-4BD9-94B0-29233477B6E6}" # Photos "Collection" (some Insider builds)

)

foreach ($key in $keys) {

foreach ($clsid in $clsids) {

New-ItemProperty -Path $key -Name $clsid -Value 1 -PropertyType DWORD -Force | Out-Null

}

}

Stop-Process -Name explorer -Force

Start-Process explorer

Was this answer helpful?

2 people found this answer helpful.

9 additional answers

Sort by: Most helpful
  1. Kimberly Olaño 23,555 Reputation points
    2025-11-02T23:48:42.7333333+00:00

    It seems those folders have been remapped to show on your desktop. Technically they aren't just normal folders but system folders just remapped. That's why you weren't able to delete them.

    Try restoring the location to default, lets see if that would fix it.

    Open File Explorer Press Windows + E, then click This PC on the left.

    Right-click “Documents” → Properties (The same “Documents” that appears under “This PC,” not the desktop icon.)

    Select the Location tab. You should see something like:

    C:\Users\dalew\Desktop

    or

    C:\Users\dalew\Documents

    If the latter points to your Desktop, it’s the wrong place.

    Click Restore Default, which should reset it to:

    C:\Users\dalew\Documents

    Click Apply → when prompted “Do you want to move all files from the old location to the new location?” choose Yes.

    Repeat the same for Music, Pictures, and Videos if they also appear on the desktop.

    Was this answer helpful?


  2. Kimberly Olaño 23,555 Reputation points
    2025-11-02T22:54:12.2666667+00:00

    That's good, so we can focus on just your own desktop folder.

    Press Windows + R, type:

    %userprofile%\Desktop
    and press Enter.

    A File Explorer window will open showing the actual contents of your desktop.

    Please check:

    • Do you see Gallery, Documents, Home, and Music listed here?
    • Do they have a small arrow icon on the lower-left corner (that means they’re shortcuts)?
    • Or do they look like folders without arrows?

    Was this answer helpful?


  3. Kimberly Olaño 23,555 Reputation points
    2025-11-02T17:55:18.6833333+00:00

    Actually, none of the entries there are unusual or directly responsible for the desktop icons you showed (Gallery, Documents, Home, and Music). Is it coming from the shared folder?

    Press Windows + R, type:

    C:\Users\Public\Desktop

    and hit Enter.

    If the same icons appear there, delete them (you might need admin rights).

    Was this answer helpful?


  4. Kimberly Olaño 23,555 Reputation points
    2025-11-02T01:38:46.9333333+00:00

    Thanks for sharing the details, Dale! I see what you mean, these icons are system or user folder shortcuts that Windows sometimes places there when a configuration, theme, or OneDrive/Desktop setting changes. I believe you used the desktop then personalize options to remove most of them.

    Try these extra steps to remove the remaining icons that you don't want there.

    • Press Win + R, type regedit, press Enter.
    • Navigate to:
      HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Desktop\NameSpace
    • Inside, look for subkeys referring to Gallery, Music, etc.
    • Carefully right-click and Delete those entries (only if you’re sure they match these icons).

    Warning: Editing the registry incorrectly can affect your system. Consider backing it up first: File → Export → Save as registry_backup.reg.

    See if this helps. If you need further assistance just let me know.

    Best regards,

    Kimberly

    Was this answer helpful?


Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.