Your cart is currently empty!
How to Fix “There Are Currently No Power Options Available” in Windows
Written by
in
Getting hit with the “There are currently no power options available” message on your Windows PC can be annoying—especially when you’re just trying to put your computer to sleep or shut it down. This issue usually pops up after an update, a system policy change, or if something’s messed with user permissions. Luckily, it’s fixable. Here’s how.
🔧 Quick Fixes to Try First
Before diving deep, start with the basics:
1. Restart Your PC
Yeah, it sounds basic, but sometimes a clean reboot resets the glitch.
2. Run the Power Troubleshooter
- Press
Windows + I
to open Settings. - Go to System > Troubleshoot > Other troubleshooters.
- Scroll down and run the Power troubleshooter.
🛠️ Fix 1: Restore Missing Power Options via Local Group Policy Editor
This is a common fix if your system policies have been changed.
Note: Group Policy Editor is only available in Windows Pro, Enterprise, and Education editions.
- Press
Windows + R
, typegpedit.msc
, and hit Enter. - Go to:
User Configuration > Administrative Templates > Start Menu and Taskbar
- Find “Remove and prevent access to the Shut Down, Restart, Sleep, and Hibernate commands”.
- Double-click it, set it to Not Configured, then click OK.
🔐 Fix 2: Check User Permissions in Registry Editor
If you’re not the admin or your account is restricted, this can block power options.
- Press
Windows + R
, typeregedit
, and press Enter. - Navigate to:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System
- Look for a key called
shutdownwithoutlogon
.- If it’s there and set to 0, double-click and set it to 1.
- If it’s missing, right-click, choose New > DWORD (32-bit) Value, name it
shutdownwithoutlogon
, and set the value to 1.
🧑💻 Fix 3: Use Command Prompt to Restore Power Options
Sometimes the power settings just get deleted or hidden.
- Open Command Prompt as Administrator (search for “cmd”, right-click, choose Run as Administrator).
- Type the following command and hit Enter:
powercfg -restoredefaultschemes
- Restart your PC.
This command resets your power plan settings to default, which can restore missing options.
🧼 Fix 4: System File Checker and DISM
Corrupt system files might be the real culprit. Use these tools to repair them.
- Open Command Prompt as Administrator.
- Run:
sfc /scannow
- After that completes, run:
DISM /Online /Cleanup-Image /RestoreHealth
Restart once done.
🎯 Final Fix: Create a New User Account
If none of the above work, your user profile may be damaged.
- Go to Settings > Accounts > Other users.
- Click Add account and follow prompts to create a new local or Microsoft account.
- Log in with the new account and check if power options appear.
✅ Wrap-Up
The “No Power Options Available” error is frustrating, but in most cases, it comes down to a policy or setting that got flipped the wrong way. Start simple, work your way down, and one of these methods should get your power options back.
If nothing works, it might be time to back up your files and consider a full Windows reset—but that’s a last resort.
Got stuck on a step? Drop a comment below and I’ll help you out.