Windows 8经典桌面不提供关闭电脑等电源选项,我们如何在不切换到Metro桌面的情况下快速关闭或者重新启动电脑呢?
我们完全可以在经典桌面的快捷菜单上自行添加需要的功能选项。首先,使用“记事本”等文本编辑器制作包含以下内容的文档:
Windows Registry Editor Version 5.00;
[HKEY_CLASSES_ROOTDesktopBackgroundShellPower Menu]
"MUIVerb"="电源菜单"
"SubCommands"="hibernate;restart;shutdown"
"Icon"="shell32.dll,215"
"Position"="bottom"
[HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerCommandStoreshellhibernate]
@="休眠"
[HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerCommandStoreshellhibernatecommand]
@="Shutdown -h"
[HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerCommandStoreshellrestart]
@="重启"
[HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerCommandStoreshellrestartcommand]
@="Shutdown -r -f -t 00"
[HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerCommandStoreshellshutdown]
@="关机"
[HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerCommandStoreshellshutdowncommand]
@="Shutdown -s -f -t 00"
将编辑好的文件存储为“Power Menu.reg”,双击导入该注册表文件,系统将弹出多个对话框要求确认打开该文件和导入文件内容,在提示的对话框中选择“是”和“确认”,最后系统将提示已经成功导入。此时,在经典桌面上的空白处单击鼠标右键即可看到我们添加的“电源菜单”了。