Windows 11 desktop with power options menu and restart highlighted

🖱️ Add Shutdown & Restart to Right-Click Menu (Windows) — Here’s How

spyboy's avatarPosted by

Tired of clicking through the Start menu just to shut down or restart?

You can add Shutdown and Restart directly to your right-click (desktop) context menu using the Windows Registry. It’s fast, looks clean, and works on Windows 10/11.

⚠️ You’ll be editing the Registry. Follow the steps carefully and back it up first.


🧠 What You’ll Get

After this, when you right-click on the desktop, you’ll see:

  • Shutdown
  • Restart

One click → done.


⚠️ Before You Start (Quick Safety)

  • Press Win + R → type regedit
  • Go to File → Export
  • Save a backup of your registry

If anything goes wrong, you can restore it.


🚀 Method 1: Add via Registry (Manual Steps)

🔹 Step 1: Open Registry Editor

  • Press Win + R
  • Type regedit → Enter

🔹 Step 2: Navigate to This Path

HKEY_CLASSES_ROOT\DesktopBackground\Shell

This controls desktop right-click menu items.


🔹 Step 3: Create “Shutdown” Option

  1. Right-click on Shell → New → Key
  2. Name it: Shutdown

Now inside Shutdown:

  • Right-click → New → Key → name it command

Select command, then:

  • Double-click (Default)
  • Set value to:
shutdown /s /t 0

🔹 Step 4: Create “Restart” Option

Repeat the same process:

  1. New Key under Shell → name it Restart
  2. Inside it → create command

Set value:

shutdown /r /t 0

⚡ Done!

Right-click your desktop → you’ll see:

  • Shutdown
  • Restart

Instant power control.


🎯 Optional: Add Icons (Looks Better)

To add icons:

  1. Click on Shutdown key
  2. Right-click → New → String Value
  3. Name it: Icon

Set value:

shell32.dll,-27

For Restart:

shell32.dll,-238

⚡ Method 2: One-Click Registry File (Easier)

You can create a .reg file:

📄 Copy this:

Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\DesktopBackground\Shell\Shutdown]
@="Shutdown"
"Icon"="shell32.dll,-27"
[HKEY_CLASSES_ROOT\DesktopBackground\Shell\Shutdown\command]
@="shutdown /s /t 0"
[HKEY_CLASSES_ROOT\DesktopBackground\Shell\Restart]
@="Restart"
"Icon"="shell32.dll,-238"
[HKEY_CLASSES_ROOT\DesktopBackground\Shell\Restart\command]
@="shutdown /r /t 0"

👉 Save as:

power_menu.reg

Double-click → confirm → done.


🧹 How to Remove It (If Needed)

  • Go back to:
HKEY_CLASSES_ROOT\DesktopBackground\Shell
  • Delete:
    • Shutdown
    • Restart

🧠 Why This Is Useful

  • Faster workflow
  • No need to open Start menu
  • Great for power users
  • Clean desktop control

⚠️ Important Notes

  • Works on Windows 10 & 11
  • Requires admin permission
  • Be careful editing registry

🔚 Final Thoughts

Small tweaks = big productivity boost.

This simple registry hack:

  • Saves time
  • Feels cleaner
  • Gives you quick control

❓ FAQ

Is it safe to edit Windows registry?

Yes, if done carefully. Always back up before making changes.


Can I add more options like Sleep or Hibernate?

Yes, similar commands can be used.


Will this work on Windows 11?

Yes, works on both Windows 10 and 11.


Can I customize names/icons?

Yes, you can change labels and icons in registry.



Discover more from Spyboy blog

Subscribe to get the latest posts sent to your email.

Leave a comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.