目前win10系统也仍处于测试末期,很多用户也迫不及待去安装系统,但是在使用中发现win10很多操作界面都改变了,比如原来熟悉的“控制面板”传统界面,这对很多用户来说很是不适用不习惯,其实微软并没有完全将原来的控制面板传统界面进行清除,我们可以通过注册表来找回那传统的win7控制面板界面,下面来看看具体操作方式吧。
具体代码如下:
Windows Registry Editor Version 5.00
;
; Created by http://doudouxitong.com, reedited by http://doudouxitong.com
;
[HKEY_CLASSES_ROOT\DesktopBackground\Shell\Appearance]
"MUIVerb"="个性化设置"
"SubCommands"="Wallpaper;Colors;Sounds;Screensaver;Icons"
"icon"="desk.cpl"
"Position"="Bottom"
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\Screensaver]
@="屏幕保护程序"
"Position"="Bottom"
"Icon"="desk.cpl"
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\Screensaver\Command]
@="rundll32.exe shell32.dll,Control_RunDLL desk.cpl,screensaver,@screensaver"
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\Sounds]
@="声音"
"Position"="Bottom"
"Icon"="mmsys.cpl"
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\Sounds\Command]
@="rundll32.exe shell32.dll,Control_RunDLL mmsys.cpl ,2"
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\Wallpaper]
@="桌面背景"
"Icon"="%SystemRoot%\\System32\\desk.cpl"
"Position"="Bottom"
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\Wallpaper\Command]
@="control.exe /NAME Microsoft.Personalization /PAGE pageWallpaper"
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\Icons]
@="桌面图标"
"Icon"="%SystemRoot%\\System32\\desk.cpl"
"Position"="Bottom"
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\Icons\Command]
@="rundll32 shell32.dll,Control_RunDLL desk.cpl,,0"
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\Colors]
@="窗口颜色"
"Icon"="%SystemRoot%\\System32\\desk.cpl"
"Position"="Bottom"
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\Colors\command]
@="control.exe /NAME Microsoft.Personalization /PAGE pageColorization"
将以上代码粘贴到记事本中,保存为“所有文件”,文件名随意,但后缀名务必为“.reg”。如果想取消设定,可以先将如下代码按同样方法保存为注册表文件,然后执行即可:
Windows Registry Editor Version 5.00
[-HKEY_CLASSES_ROOT\DesktopBackground\Shell\Appearance]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\Screensaver]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\Sounds]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\Wallpaper]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\Icons]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\Colors]
通过注册表导入修改,就可以轻松在win10系统下找回那熟悉的win7控制面板传统界面。