在win10里怎么找回win7中的传统控制面板?

其实啊,到现在微软都还没把传统界面完全去除掉呢,用注册表就能把它“找回来”。怎么找呢?可以通过添加右键菜单的办法,这样一来,传统设置不但能回来,而且进入相关设置的时候还更方便了。

  具体代码如下:

  Windows Registry Editor Version 5.00

  ;

  ; Created by http://winaero.com, reedited by http://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"

把上面的代码复制下来,粘贴到记事本里,保存的时候选择“所有文件”类型。文件名可以随便取,不过后缀名一定要是“.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]