Windows 전원관리
전원 옵션 (Power Plan) 활성화
기본적으로 균형 조정(권장)
만 활성화 돼 있는데, 고성능
, 절전
, 최고의 성능
등을 활성화할 수 있다.
관리자 권한으로 명령행을 실행한 뒤에 아래 명령을 실행한다.
# 고성능
powercfg -duplicatescheme 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c
# 최고의 성능
powercfg -duplicatescheme e9a42b02-d5df-448d-aa00-03f14749eb61
# 절전
powercfg -duplicatescheme a1841308-3541-4fab-bc81-f71556f20b4a
# 균형 조정
powercfg -duplicatescheme 381b4222-f694-41f0-9685-ff5bb260df2e
전원 옵션 변경 명령
# 전원 옵션 목록 보기
powercfg /l
# 선택해서 변경하기
@echo off
setlocal
SET balanced=381b4222-f694-41f0-9685-ff5bb260df2e
SET lowpower=fa2d96e9-bdd8-4a4b-b20d-543123d46cd5
powercfg -getactivescheme > tmp.txt
SET /p active= < tmp.txt
echo.%active% | find /I "%balanced%" > nul && (
powercfg -s %lowpower%
) || (
Powercfg -s %balanced%
)
endlocal
ᅟREM 변경된 절전 모드 화면 표시
@echo on
powercfg -getactivescheme
PAUSE
덮개 닫아도 절전 안 되게
절전 상태 Standby Mode
절전 상태 명령어
@echo off
powercfg -h off
%windir%\system32\rundll32.exe PowrProf SetSuspendState
powercfg -h on
exit
Turns echo off
turns hibernate off so you will standby instead of hibernate
Standbys the computer if hibernate is off but hibernates if hibernate is on
turns hibernate back on
exits the program