Forked from raspi/enable-all-advanced-power-settings.ps1
Created
June 11, 2018 20:25
-
-
Save Laurae2/b7204f6d390ae0ea7899386eb77c95ac to your computer and use it in GitHub Desktop.
Enable all advanced power settings in Windows.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# List all possible power config GUIDs in Windows | |
# Run: this-script.ps1 | Out-File powercfg.ps1 | |
# Then edit and run powercfg.ps1 | |
# (c) Pekka "raspi" Järvinen 2017 | |
$powerSettingTable = Get-WmiObject -Namespace root\cimv2\power -Class Win32_PowerSetting | |
$powerSettingInSubgroubTable = Get-WmiObject -Namespace root\cimv2\power -Class Win32_PowerSettingInSubgroup | |
Get-WmiObject -Namespace root\cimv2\power -Class Win32_PowerSettingCapabilities | ForEach-Object { | |
$tmp = $_.ManagedElement | |
$tmp = $tmp.Remove(0, $tmp.LastIndexOf('{') + 1) | |
$tmp = $tmp.Remove($tmp.LastIndexOf('}')) | |
$guid = $tmp | |
$s = ($powerSettingInSubgroubTable | Where-Object PartComponent -Match "$guid") | |
if (!$s) { | |
return | |
} | |
$tmp = $s.GroupComponent | |
$tmp = $tmp.Remove(0, $tmp.LastIndexOf('{') + 1) | |
$tmp = $tmp.Remove($tmp.LastIndexOf('}')) | |
$groupguid = $tmp | |
$s = ($powerSettingTable | Where-Object InstanceID -Match "$guid") | |
$descr = [string]::Format("# {0}", $s.ElementName) | |
$runcfg = [string]::Format("powercfg -attributes {0} {1} -ATTRIB_HIDE", $groupguid, $guid) | |
Write-Output $descr | |
Write-Output $runcfg | |
Write-Output "" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment