How to add shortcuts such as shutdown, logout, restart, etc. to the Windows 8 system in the right mouse button

  

Windows
8 preview version has no shortcuts in the start menu, such as switching on and off, this problem is The user just touched is a very tricky thing, so I found some relevant information on the Internet to teach you how to add shutdown, restart, logout, sleep, sleep, switch users, and lock in the right mouse button menu. Oh, listening to me saying so much is not very magical.

The following is to teach you step by step!

Operation steps

The production principle is also implemented by adding some commands to the registry.

First create a new notepad and copy the following code into Notepad.

Copy the following code:

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\\DesktopBackground\\Shell\\Power Menu]

“MUIVerb”=” Power Menu”

“SubCommands”=”lock;logoff;switch;sleep;hibernate;restart;shutdown”

“Icon”=”shell32.dll,215″< Br>

“Position”=”bottom”

[HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\CommandStore\\shell\\lock]

@=”Lock&rdquo ;

[HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\CommandStore\\shell\\lock\\command]

@=”Rundll32 User32.dll,LockWorkStation”

[HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\CommandStore\\shell\\logoff]

@=”Log Off”

[HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\ Explorer\\CommandStore\\shell\\logoff\\command]

@=”Shutdown -l”

[HKEY_LOCAL_MACHINE\\SOFTWARE \\Microsoft\\Windows\\CurrentVersion\\Explorer\\CommandStore\\shell\\switch]

@=”Switch User”

[HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\CommandStore\\shell \\switch\\command]

@=”tsdiscon.exe”

[HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\CommandStore\\shell\\sleep]

@=”Sleep”

[HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\CommandStore\\shell\\sleep\\command]

@=”rundll32.exe powrprof.dll, SetSuspendState Sleep”

[HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\CommandStore\\shell\\hibernate]

@=”Hibernate”

[HKEY_LOCAL_MACHINE\\SOFTWARE \\Microsoft\\Windows\\CurrentVersion\\Explorer\\CommandStore\\shell\\hibernate\\command]

@=”Shutdown -h”

[HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\ CommandStore\\shell\ estart]

@=”Restart”

[HKEY_LO CAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\CommandStore\\shell\ estart\\command]

@=”Shutdown -r -f -t 00″

[HKEY_LOCAL_MACHINE\\SOFTWARE\\ Microsoft\\Windows\\CurrentVersion\\Explorer\\CommandStore\\shell\\shutdown]

@=”Shut Down”

[HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\CommandStore\\shell\\ Shutdown\\command]

@=”Shutdown -s -f -t 00″

Production Flowchart




Then click on the File menu “ Save As & rdquo; save format as .reg.


After saving, find the reg file and double-click the prompt that appears.


You're done, look at the right mouse button menu and see if you have a shutdown button.


If the user does not make it, you can also download the ready-made registry file which includes adding the registry and deleting the registry.

Copyright © Windows knowledge All Rights Reserved