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