OK、だからここに私がやったことがあります:
設定は、任意のパワーを設定するための2つのコマンドpowercfg -SetDcValueIndex
とpowercfg -SetAcValueIndex
、あなたはときは、電池やAC電源で設定を変更したい場合は異なります。このコマンドの形式は次のとおりです(大文字と小文字は区別されません)。
POWERCFG -SETDCVALUEINDEX <SCHEME_GUID> <SUBGROUP_GUID> <SETTING_GUID> value
次に、3つのGUIDが必要です。を実行してそれらを見つけますpowercfg -q
。出力は次のようになります(システムの言語になります)。
D:\Users\212579988>powercfg /q
Power Scheme GUID: 381b4222-f694-41f0-9685-ff5bb260df2e (Balanced)
Subgroup GUID: fea3413e-7e05-4911-9a71-700331f1c294 (Settings belonging to no subgroup)
Power Setting GUID: 0e796bdb-100d-47d6-a2d5-f7d2daa51f51 (Require a password on wakeup)
Possible Setting Index: 000
Possible Setting Friendly Name: No
Possible Setting Index: 001
Possible Setting Friendly Name: Yes
Current AC Power Setting Index: 0x00000001
Current DC Power Setting Index: 0x00000001
Subgroup GUID: 0012ee47-9041-4b5d-9b77-535fba8b1442 (Hard disk)
Power Setting GUID: 6738e2c4-e8a5-4a42-b16a-e040e769756e (Turn off hard disk after)
Minimum Possible Setting: 0x00000000
Maximum Possible Setting: 0xffffffff
Possible Settings increment: 0x00000001
Possible Settings units: Seconds
Current AC Power Setting Index: 0x00000000
Current DC Power Setting Index: 0x00000000
...
Subgroup GUID: 7516b95f-f776-4464-8c53-06167f40cc99 (Display)
Power Setting GUID: 17aaa29b-8b43-4b94-aafe-35f64daaf1ee (Dim display after)
Minimum Possible Setting: 0x00000000
Maximum Possible Setting: 0xffffffff
Possible Settings increment: 0x00000001
Possible Settings units: Seconds
Current AC Power Setting Index: 0x0000012c
Current DC Power Setting Index: 0x00000078
Power Setting GUID: 3c0bc021-c8a8-4e07-a973-6b14cbcb2b7e (Turn off display after)
Minimum Possible Setting: 0x00000000
Maximum Possible Setting: 0xffffffff
Possible Settings increment: 0x00000001
Possible Settings units: Seconds
Current AC Power Setting Index: 0x00000258
Current DC Power Setting Index: 0x0000012c
Power Setting GUID: aded5e82-b909-4619-9949-f5d71dac0bcb (Display brightness)
Minimum Possible Setting: 0x00000000
Maximum Possible Setting: 0x00000064
Possible Settings increment: 0x00000001
Possible Settings units: %
Current AC Power Setting Index: 0x00000064
Current DC Power Setting Index: 0x0000000c
...
次に、検索して書き留める必要があります。
- 現在のスキームGUID-最初の行にあります。
- 表示用のサブグループGUID-下向き
Display
- 明るさのGUIDを設定する-下を向く
Display Brightness
次のように、3つのGUID値と希望する明るさをパーセントで入力します(10%としましょう)。
C:\Users\Mike>powercfg -SetDcValueIndex 381b4222-f694-41f0-9685-ff5bb260df2e 7516b95f-f776-4464-8c53-06167f40cc99 aded5e82-b909-4619-9949-f5d71dac0bcb 10
そして...私には何も起こりませんでした!明るさは変わらなかった!実行するpowercfg /q
ことで、実際に新しい値が適切に保存されていることを確認しました。そのため、電源設定をアクティブにするように要求しました(常にアクティブでしたが)。
C:\Users\Mike>powercfg -S 381b4222-f694-41f0-9685-ff5bb260df2e
そして出来上がり!画面の明るさが10%に暗くなった!