Adding Settings items to the Context Menu on Desktop
Microsoft has moved most of the Control Panel features over to adding the Settings interface in Windows 10, and at some point, the classic Control Panel might be removed altogether.
Settings panel contains different categories.
System, Devices, Phone, Network & Internet, Personalization, Apps, Accounts, Time & language, Gaming, Ease of Access, Cortana, Privacy, Update & security.
Windows 10 includes the ms-settings shortcut protocol, which enables you to access the Settings items easily without the need to enter the Settings page to access a specific item.
We will use the ms-settings shortcuts: which we explained in a previous article.
"Accessing the Settings items in Windows 10 through ms-settings shortcuts."
You can view the complete list of shortcuts via Microsoft's article, which we will work with
On adding Settings to the Leak menu on the right of the Windows 10 desktop.
- Add Settings to the Context Menu
If you want to add Windows 10 Settings to the list Context Menu Right-click on the desktop, use Registry Editor.
There are no modifications required inside the Registry Editor but all you have to do is implement next steps:
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USERSOFTWAREClassesDesktopBackgroundShellSettings]
"Position"="Middle"
"Icon"="SystemSettingsBroker.exe"
"SubCommands"=""
; Settings home
[HKEY_CURRENT_USERSOFTWAREClassesDesktopBackgroundShellSettingsshell1subcmd]
"Icon"="SystemSettingsBroker.exe"
"MUIVerb"="Settings"
[HKEY_CURRENT_USERSOFTWAREClassesDesktopBackgroundShellSettingsshell1subcmdcommand]
@="explorer ms-settings:"
; System
[HKEY_CURRENT_USERSOFTWAREClassesDesktopBackgroundShellSettingsshell2subcmd]
"CommandFlags"=dword:00000020
"MUIVerb"="System"
[HKEY_CURRENT_USERSOFTWAREClassesDesktopBackgroundShellSettingsshell2subcmdcommand]
@="explorer ms-settings:display"
; Devices
[HKEY_CURRENT_USERSOFTWAREClassesDesktopBackgroundShellSettingsshell3subcmd]
"MUIVerb"="Devices"
[HKEY_CURRENT_USERSOFTWAREClassesDesktopBackgroundShellSettingsshell3subcmdcommand]
@="explorer ms-settings:bluetooth"
; Network & Internet
[HKEY_CURRENT_USERSOFTWAREClassesDesktopBackgroundShellSettingsshell4subcmd]
"MUIVerb"="Network && Internet"
[HKEY_CURRENT_USERSOFTWAREClassesDesktopBackgroundShellSettingsshell4subcmdcommand]
@="explorer ms-settings:network"
; Personalization
[HKEY_CURRENT_USERSOFTWAREClassesDesktopBackgroundShellSettingsshell5subcmd]
"MUIVerb"="Personalization"
[HKEY_CURRENT_USERSOFTWAREClassesDesktopBackgroundShellSettingsshell5subcmdcommand]
@="explorer ms-settings:personalization"
; Apps
[HKEY_CURRENT_USERSOFTWAREClassesDesktopBackgroundShellSettingsshell6subcmd]
"MUIVerb"="Apps"
[HKEY_CURRENT_USERSOFTWAREClassesDesktopBackgroundShellSettingsshell6subcmdcommand]
@="explorer ms-settings:appsfeatures"
; Accounts
[HKEY_CURRENT_USERSOFTWAREClassesDesktopBackgroundShellSettingsshell7subcmd]
"MUIVerb"="Accounts"
[HKEY_CURRENT_USERSOFTWAREClassesDesktopBackgroundShellSettingsshell7subcmdcommand]
@="explorer ms-settings:yourinfo"
; Time & language
[HKEY_CURRENT_USERSOFTWAREClassesDesktopBackgroundShellSettingsshell8subcmd]
"MUIVerb"="Time && language"
[HKEY_CURRENT_USERSOFTWAREClassesDesktopBackgroundShellSettingsshell8subcmdcommand]
@="explorer ms-settings:dateandtime"
; Gaming
[HKEY_CURRENT_USERSOFTWAREClassesDesktopBackgroundShellSettingsshell9subcmd]
"MUIVerb"="Gaming"
[HKEY_CURRENT_USERSOFTWAREClassesDesktopBackgroundShellSettingsshell9subcmdcommand]
@="explorer ms-settings:gaming-gamebar"
; Ease of Access
[HKEY_CURRENT_USERSOFTWAREClassesDesktopBackgroundShellSettingsshell10subcmd]
"MUIVerb"="Ease of Access"
[HKEY_CURRENT_USERSOFTWAREClassesDesktopBackgroundShellSettingsshell10subcmdcommand]
@="explorer ms-settings:easeofaccess-narrator"
; Cortana
[HKEY_CURRENT_USERSOFTWAREClassesDesktopBackgroundShellSettingsshell11subcmd]
"MUIVerb"="Cortana"
[HKEY_CURRENT_USERSOFTWAREClassesDesktopBackgroundShellSettingsshell11subcmdcommand]
@="explorer ms-settings:cortana"
; Privacy
[HKEY_CURRENT_USERSOFTWAREClassesDesktopBackgroundShellSettingsshell12subcmd]
"MUIVerb"="Privacy"
[HKEY_CURRENT_USERSOFTWAREClassesDesktopBackgroundShellSettingsshell12subcmdcommand]
@="explorer ms-settings:privacy"
; Update & security
[HKEY_CURRENT_USERSOFTWAREClassesDesktopBackgroundShellSettingsshell13subcmd]
"MUIVerb"="Update && security"
[HKEY_CURRENT_USERSOFTWAREClassesDesktopBackgroundShellSettingsshell13subcmdcommand]
@="explorer ms-settings:windowsupdate"
; Mixed Reality
[HKEY_CURRENT_USERSOFTWAREClassesDesktopBackgroundShellSettingsshell14subcmd]
"MUIVerb"="Mixed Reality"
[HKEY_CURRENT_USERSOFTWAREClassesDesktopBackgroundShellSettingsshell14subcmdcommand]
@="explorer ms-settings:holographic"
- Copy the above code and paste it into a new text file.
- Save the file as settings-menu.reg.
- Click DoubleClick on the settings-menu.reg file and click Yes to apply the settings.
- Any space on the desktop will find that the items have been added.
- Remove Settings from the Context Menu:-
If you want to remove the items, all you have to do is open regedit.exe and follow the path below:-
HKEY_CURRENT_USERSOFTWAREClassesDesktopBackgroundShellSettings
Comments
Post a Comment