좋아, 여기 내가 한 일이 있습니다.
전원 설정에 대한 두 가지 명령은 배터리 또는 AC 전원에있을 때 설정을 변경하려는 경우 powercfg -SetDcValueIndex
및 powercfg -SetAcValueIndex
입니다. 이 명령의 형식은 대소 문자를 구분하지 않습니다.
POWERCFG -SETDCVALUEINDEX <SCHEME_GUID> <SUBGROUP_GUID> <SETTING_GUID> value
그런 다음 세 개의 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
이제 세 가지 GUID 값과 원하는 밝기를 백분율로 표시하십시오.
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 %로 어두워졌습니다!