如何在Win10系统中使用传统的“个性化”设置
发布网友
发布时间:2022-04-29 02:08
我来回答
共1个回答
热心网友
时间:2022-06-28 09:08
在Win10系统中,传统控制面板功能被逐渐淡化,新版“个性化”设置也做了改变,刚从Win7或Win8.1系统升级到Win10系统的用户一时间适应不过来,其实用户可以在注册表中重新回归传统的“个性化”设置。
具体代码如下:
一、将以下代码粘贴到记事本中,保存为“所有文件”,文件名随意,但后缀名务必为“.reg”。
Windows Registry Editor Version 5.00
;
; Created by http://winaero.com, reedited by http://ithome.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"
二、如果想取消设定,可以先将如下代码按同样方法保存为注册表文件,然后执行即可:
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]
上述方法是通过修改注册表的方法,在鼠标右键菜单上回归传统的“个性化”设置,而且可以更方便的进入相关设置。