How to Fix Many Components Missing From Advanced Power Settings On Windows: A Step-by-Step Guide
This video will show you how to fix the problem of many components missing from Advanced Power Settings on Windows. Sometimes, when you access the Advanced Power Settings on your Windows computer, you may find that several options are missing. This can be frustrating, but don't worry, we have the solution! We'll walk you through the troubleshooting steps to get all the missing components back in your Advanced Power Settings. By the end of this video, you'll know how to fix the missing components in your Windows power options and access all the advanced power settings. Whether you're a beginner or an advanced user, this video will help you troubleshoot and fix the missing components in your Windows power settings.
00:00 Intro
00:14 CMD Commands
01:25 Registry Editor CsEnabled
02:45 Powershell
03:35 Outro
CMD Commands:
powercfg -duplicatescheme a1841308-3541-4fab-bc81-f71556f20b4a
powercfg -duplicatescheme 381b4222-f694-41f0-9685-ff5bb260df2e
powercfg -duplicatescheme 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c
powercfg -duplicatescheme e9a42b02-d5df-448d-aa00-03f14749eb61
Registry Editor Path:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Power
Powershell Commands:
$sting77 = "HKLM\SYSTEM\CurrentControlSet\Control\Power\PowerSettings"
$querylist = reg query $sting77
foreach ($regfolder in $querylist){
$active = $regfolder -replace "HKEY_LOCAL_MACHINE" , "HKLM:"
Get-ItemProperty -Path $active
Set-ItemProperty -Path "$active" -Name "Attributes" -Value '2'
}