Windows 10 20H2, system info screen

Discussion in 'Windows 10' started by Smiglo5, Oct 27, 2020.

Tags:
  1. Aldegard

    Aldegard MDL Novice

    Aug 19, 2021
    23
    13
    0
    What wrong command? Just create folder with name system.{BB06C0E4-D293-4f75-8A90-CB05B6477EEE}. Old one shell:::{BB06C0E4-D293-4f75-8A90-CB05B6477EEE} not work anymore.
    On Windows Server 2022 work fine.
     
  2. migascalp

    migascalp MDL Senior Member

    Sep 18, 2009
    315
    488
    10
    A shortcut with this command works for me on Windows 11
    Edit based on this post
    Link named "Legacy System Properties" in C:\
    Code:
    @Echo Off
    REM ; Add Legacy System Properties to Context Menu
    Reg.exe add "HKCR\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\Legacy System Properties" /v "Icon" /t REG_SZ /d "imageres.dll,-109" /f
    Reg.exe add "HKCR\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\Legacy System Properties\command" /ve /t REG_SZ /d "explorer \"C:\Legacy System Properties.lnk\"" /f
    exit
    To be adapted according to the path/name of the shortcut
     
  3. Aldegard

    Aldegard MDL Novice

    Aug 19, 2021
    23
    13
    0
  4. kaljukass

    kaljukass MDL Guru

    Nov 26, 2012
    3,396
    1,322
    120
    Go to the registry and change the command and you're done.
    The only thing is that this registry key will not allow you to make any kind of changes unless you change the permissions before.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  5. Aldegard

    Aldegard MDL Novice

    Aug 19, 2021
    23
    13
    0
    #25 Aldegard, Sep 4, 2021
    Last edited: Sep 4, 2021
    As I said, I have already done everything. But I need to do everything in the section "Properties".
    You mean TrustedInstaller? This is the easiest thing for me. Do not worry. I can change any registry branch (except upfc.exe) not even using third-party programs and even not taking rights.
    ---------------------------------------------------------------------------------------------------------------------------------
    Ok. I found a tweak that disables the item "Properties" from right-click pop-up on "This PC".
    Code:
    reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer" /v "NoPropertiesMyComputer" /t REG_DWORD /d 1 /f
    Now you can create an item with the same name only in the middle. Not perfect as I expected but better than nothing.