Win10中怎么在右键菜单中加入“个性化选项”?

  许多Win7、Win8/8.1用户喜欢在桌面右键菜单中添加一个“个性化设置选项”,这个选项中包含我们常用的诸如桌面背景、窗口颜色、声音、桌面图标等设置,使用起来非常方便。在升级至 Win10之后,第一件事就是想在桌面右键菜单中增加该选项,其实这个很容易实现,我们只需要将以下代码导入注册表即可生效。

Win10中怎么在右键菜单中加入“个性化选项”?

   Windows10桌面右键菜单加入“个性化选项”设置教程

  1. 新建文本文档,将以下代码复制后粘贴到空白文档并保存;

  Windows Registry Editor Version 5.00
  ;

  ; Created by //winaero.com, reedited by //ithome.com

  ;

  [HKEY_CLASSES_ROOTDesktopBackgroundShellAppearance]

  "MUIVerb"="个性化设置"

  "SubCommands"="Wallpaper;Colors;Sounds;Screensaver;Icons"

  "icon"="desk.cpl"

  "Position"="Bottom"

  [HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerCommandStoreshellScreensaver]

  @="屏幕保护程序"

  "Position"="Bottom"

  "Icon"="desk.cpl"

  [HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerCommandStoreshellScreensaverCommand]

  @="rundll32.exe shell32.dll,Control_RunDLL desk.cpl,screensaver,@screensaver"

  [HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerCommandStoreshellSounds]

  @="声音"

  "Position"="Bottom"

  "Icon"="mmsys.cpl"

  [HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerCommandStoreshellSoundsCommand]

  @="rundll32.exe shell32.dll,Control_RunDLL mmsys.cpl ,2"

  [HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerCommandStoreshellWallpaper]

  @="桌面背景"

  "Icon"="%SystemRoot%\System32\desk.cpl"

  "Position"="Bottom"

  [HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerCommandStoreshellWallpaperCommand]

  @="control.exe /NAME Microsoft.Personalization /PAGE pageWallpaper"

  [HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerCommandStoreshellIcons]

  @="桌面图标"

  "Icon"="%SystemRoot%\System32\desk.cpl"

  "Position"="Bottom"

  [HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerCommandStoreshellIconsCommand]

  @="rundll32 shell32.dll,Control_RunDLL desk.cpl,,0"

  [HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerCommandStoreshellColors]

  @="窗口颜色"

  "Icon"="%SystemRoot%\System32\desk.cpl"

  "Position"="Bottom"

  [HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerCommandStoreshellColorscommand]

  @="control.exe /NAME Microsoft.Personalization /PAGE pageColorization"

  2. 将文本文档的扩展名“.txt”改为“.reg”,例如你之前的文件名称为“1.txt”,那么就将其重命名为“1.reg”,然后双击运行该文件进行注册表导入即可。

  当然如果你想恢复到初始状态也是可以的,我们可以按照上面的方法操作,不过这一次将代码换成下面所示即可:

  Windows Registry Editor Version 5.00

  [-HKEY_CLASSES_ROOTDesktopBackgroundShellAppearance]

  [-HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerCommandStoreshellScreensaver]

  [-HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerCommandStoreshellSounds]

  [-HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerCommandStoreshellWallpaper]

  [-HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerCommandStoreshellIcons]

  [-HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerCommandStoreshellColors]