Restoring legacy System Properties

Discussion in 'Windows 10' started by tefor, Aug 14, 2023.

  1. tefor

    tefor MDL Senior Member

    Apr 5, 2017
    317
    240
    10
    I really dont know if this is the correct place to ask my question but i couldnt find any thread about tweaks and fixes for windows 10
    Formerly when i clicked right on MyComputer on desktop, it took me to System properties (MyComputer>Properties>System Properties)
    But now , when i am clicking right it takes me to Settings (Mycomputer>Properties>Settings)
    Is it possible to revert back to former ? i.e. MyComputer>Properties>System Properties
    any fix for this please
    Thank you
     
  2. kaljukass

    kaljukass MDL Guru

    Nov 26, 2012
    3,451
    1,345
    120
    #2 kaljukass, Aug 14, 2023
    Last edited: Sep 16, 2023
    @tefor
    I don't quite understand what you really want, but if you mean ThisPC instead of MyComputer and you want to get to the system settings, it is possible to get System back in Windows 10.
    You can also access System Properties using a direct link.
    Sorry if you meant something else. I can't guess, because the names you use are no longer in use for a long time.
    Her is how
    1. make a new desktop shortcut
    2. use this address C:\Windows\System32\SystemPropertiesProtection.exe
    3. Name it System Protection Settings
    4. you can also change the icon if you don't like the default icon
    5. to open this where is the Windows version and activation and pc name etc, make shortcut
      Code:
      %windir%\explorer.exe shell:::{BB06C0E4-D293-4f75-8A90-CB05B6477EEE}
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  3. mxman2k

    mxman2k MDL Developer

    Jun 20, 2007
    6,327
    21,138
    210
    To show the old OEM basic system screen like windows 7 instead of the new modern Setting app method:

    The below code adds 'OEM Info' to the right click menu of 'This PC' which shows the old basic system data window instead of via the Settings App.

    A later CU could prevent this from working although i doubt that now.

    It does NOT work for windows 11 as m$ has removed the old control panel call it uses from that OS and it will just revert to the Settings app information method.
    Code:
    
     REG delete "HKCR\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\OEM Info" /f >nul 2>&1
    
     REG add "HKCR\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\OEM Info" /v "MUIVerb" /t REG_SZ /d "@systemcpl.dll,-1576" /f >nul 2>&1
     REG add "HKCR\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\OEM Info" /v "Icon" /t REG_SZ /d "%SystemRoot%\System32\imageres.dll,-24" /f >nul 2>&1
     REG add "HKCR\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\OEM Info" /v "Position" /t REG_SZ /d "Bottom" /f >nul 2>&1
     REG add "HKCR\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\OEM Info\Command" /ve /t REG_SZ /d "Explorer.exe shell:::{BB06C0E4-D293-4f75-8A90-CB05B6477EEE}" /f >nul 2>&1
    
    
    The line in green when entered in a admin command prompt on its own will remove the 'OEM Info' Context Menu item from 'This PC' if you no longer require it.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  4. acer-5100

    acer-5100 MDL Guru

    Dec 8, 2018
    4,003
    2,923
    150
    #5 acer-5100, Aug 15, 2023
    Last edited: Aug 16, 2023
    Explorer patcher has the specific option to avoid the redirection to the "modern" settings of this and other calls to control panel items (working on both W10 and W11).

    Another straightforward way is to use the WinX menu editor, To add the needed control panel items to the WinX menu.

    This is from the very last build of Server 11, I don't think it's different in W11

    upload_2023-8-15_11-52-46.png
     
  5. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    49,723
    103,747
    450
  6. acer-5100

    acer-5100 MDL Guru

    Dec 8, 2018
    4,003
    2,923
    150
    #7 acer-5100, Aug 16, 2023
    Last edited: Aug 16, 2023
    It still works

    This is on virgin OS

    upload_2023-8-16_7-11-43.png

    This is after StartAllBack is installed (perhaps SAB has its own way to redirect the cpl properties, just like explorer patcher, so no workaround is needed)

    upload_2023-8-16_7-16-24.png

    See the details on following messages
    (thanks to @abbodi1406 who spotted a mistake on what I've posted before this message was edited)
     
  7. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    17,223
    90,875
    340
    It doesn't work here, not even on Win 8.1
    it just open Documents folder
     
  8. acer-5100

    acer-5100 MDL Guru

    Dec 8, 2018
    4,003
    2,923
    150
    I must have done something stupid. I checked on three OSes before posting, I remove the post until I figure what's wrong
     
  9. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    17,223
    90,875
    340
    It works if "System.{BB06C0E4-D293-4f75-8A90-CB05B6477EEE}" folder is already created in the User's Desktop (or Public\Desktop)
     
  10. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    17,223
    90,875
    340
    #11 abbodi1406, Aug 16, 2023
    Last edited: Aug 16, 2023
    This works too (but not very reliable)
    Code:
    md "%windir%\.{BB06C0E4-D293-4f75-8A90-CB05B6477EEE}" >nul 2>&1
    REG add "HKCR\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\OEM Info\Command" /ve /t REG_SZ /d "Explorer.exe %windir%\.{BB06C0E4-D293-4f75-8A90-CB05B6477EEE}" /f >nul 2>&1
     
  11. acer-5100

    acer-5100 MDL Guru

    Dec 8, 2018
    4,003
    2,923
    150
    #12 acer-5100, Aug 16, 2023
    Last edited: Aug 16, 2023
    @abbodi1406

    I experimented a bit and I think the best solution is:

    Create a folder in C:\windows\ and rename it to

    System.{BB06C0E4-D293-4f75-8A90-CB05B6477EEE}

    then use

    Code:
    REG add "HKCR\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\OEM Info\Command" /ve /t REG_SZ /d "Explorer.exe %systemroot%\system.{BB06C0E4-D293-4f75-8A90-CB05B6477EEE}" /f >nul 2>&1
    Seem it works reliably.

    Edit:

    Sorry, I was experimenting with the browser already opened to this thread, and I didn't see you already suggested more or less the same solution.

    Edit2

    I see I used %systemroot% while you used %windir%, any advantage/disadvange using the former or the latter?
     
  12. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    49,723
    103,747
    450
  13. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    17,223
    90,875
    340
    No, windir is just shorter :D
    windir is actually an alias, %SystemRoot% is the base
    Code:
    reg query "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /v windir
    
    reg query "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v SystemRoot
     
  14. Carlos Detweiller

    Carlos Detweiller Emperor of Ice-Cream

    Dec 21, 2012
    6,776
    7,727
    210
    %windir% was already used in the Win9x times, I think it is just still there for backwards compatibility. What's no longer with us is %winbootdir%.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  15. acer-5100

    acer-5100 MDL Guru

    Dec 8, 2018
    4,003
    2,923
    150
    Ah, I see...

    It's just like the short answer to "what's the difference between wget and curl?"

    wget can be typed with one hand :D
     
  16. acer-5100

    acer-5100 MDL Guru

    Dec 8, 2018
    4,003
    2,923
    150
    #17 acer-5100, Sep 3, 2023
    Last edited: Sep 3, 2023
    I found a better way for Win10 20H2 -22H2 (2004 and previous editions are not affected).

    Just set the key

    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\FeatureManagement\Overrides\0\2093230218\EnabledState to 0

    And reboot.
     
  17. acer-5100

    acer-5100 MDL Guru

    Dec 8, 2018
    4,003
    2,923
    150
    Or, if you prefer, you can remove the enablement package(s) altogether ;)

    upload_2023-9-3_20-10-20.png
     
  18. acer-5100

    acer-5100 MDL Guru

    Dec 8, 2018
    4,003
    2,923
    150
    Pay attention that the above breaks a "fundamental feature" :rasta: as well.

    Winver and the info page on PC setting will show 2009 instead of 20H2

    upload_2023-9-16_20-54-35.png