[Solved] This PC on Desktop without Windows 11 activated

Discussion in 'Windows 11' started by TrustMe, Feb 19, 2023.

  1. TrustMe

    TrustMe MDL Member

    May 2, 2013
    189
    68
    10
    Does anyone know how to place This PC on the Desktop without Windows 11 being activated? I'm on version 22H2.
     
  2. mxman2k

    mxman2k MDL Developer

    Jun 20, 2007
    5,778
    19,351
    180
    This PC (or My Computer for older OS's)

    Via admin cmd prompt:
    Code:
    REG add "HKLM\Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\NewStartPanel" /v "{20D04FE0-3AEA-1069-A2D8-08002B30309D}" /t REG_DWORD /d "0" /f >NUL 2>&1
    REG add "HKLM\Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\ClassicStartMenu" /v "{20D04FE0-3AEA-1069-A2D8-08002B30309D}" /t REG_DWORD /d "0" /f >NUL 2>&1
    Or via .reg file:
    Code:
    Windows Registry Editor Version 5.00
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons]
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\ClassicStartMenu]
    "{20D04FE0-3AEA-1069-A2D8-08002B30309D}"=dword:00000000
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\NewStartPanel]
    "{20D04FE0-3AEA-1069-A2D8-08002B30309D}"=dword:00000000
    Restart Explorer.exe or log out/in.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  3. TrustMe

    TrustMe MDL Member

    May 2, 2013
    189
    68
    10
    I created the registry file and ran it. I got a message that keys were successfully created or added but I still do not see This PC on the Desktop.

    If I go to Settings > Personalization >Themes > scroll down to > Desktop icon settings > it is still grayed out.
     
  4. mxman2k

    mxman2k MDL Developer

    Jun 20, 2007
    5,778
    19,351
    180
    did you log out back in or reboot?
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  5. TrustMe

    TrustMe MDL Member

    May 2, 2013
    189
    68
    10
    No, I forgot to reboot. It worked great!! Thank you for your help.