Here's a PowerShell script I wrote that lists all available POwer Options in a GridView control. Copy the entire script, paste into an Administrative PowerShell console, and press <Enter> to run:
Function Toggle-PowerSettingsVisibility {
$Title = 'Select option(s) to toggle visibility'
$PowerSettings = 'HKLM:\SYSTEM\CurrentControlSet\Control\Power\PowerSettings'
@( [PSCustomObject]@{
Attributes = 0
PSChildName = '{ -- No Changes -- }'
Name = ' "Safety" row to clear selection'
} ) +
@( Get-ChildItem $PowerSettings -Recurse | ? Property -contains 'Attributes' | Get-ItemProperty |
Select Attributes, PSCHildName,
@{ N = 'Name' ; E = { $_.FriendlyName.Split(',')[-1] }} ) | Sort PSChildName |
Out-GridView -Passthru -Title $Title | ForEach {
$Splat = @{
Path = Resolve-Path "$PowerSettings\*\$($_.PSChildName)"
Name = 'Attributes'
Value = $_.Attributes -bXor 0x0000003
}
Set-ItemProperty @Splat
}
}
Toggle-PowerSettingsVisibility
THe Attributes column displays 2 for visible items and 1 for hidden items:

Type Maximum in the Filter textbox, select your desired option(s) and click OK:

That's it!
