본문 바로가기
컴퓨터 Computer/레지스트리

421. 윈도우10 디스플레이를 끄는 시간 설정 | Windows 10 Settings - Control Panel - Power Options - Choose when to turn off the display

by #XTRM 2024. 9. 3.
반응형

Windows 10 Choose when to turn off the display 

Start > Windows Settings > System > Power & sleep > Additional power settings
Control Panel > All Control Panel Items > Power Options > Choose when to turn off the display > Edit Plan Settings

   - Turn off the display

 

 

윈도우10 디스플레이를 끄는 시간 설정

시작 > Windows 설정 > 시스템 > 전원 및 절전 > 추가 전원 설정
제어판 > 하드웨어 및 소리 > 전원 옵션 > 디스플레이를 끄는 시간 설정 > 전원 관리 옵션 설정 편집

  - 디스플레이 끄기

 

CMD (Command Prompt) 명령 스크립트

이 명령어는 Windows의 powercfg.exe 도구를 사용하여 시스템의 모니터 자동 꺼짐 시간을 설정하는 명령어입니다. 각각의 명령어는 AC 전원 상태(전원 어댑터에 연결된 상태)와 DC 전원 상태(배터리로 동작하는 상태)에서 모니터가 자동으로 꺼지지 않도록 설정합니다.
이 두 명령어를 사용하면, 시스템이 전원 어댑터에 연결되어 있든 배터리로 작동하든 관계없이 모니터가 자동으로 꺼지지 않고 계속 켜져 있게 됩니다.

powercfg.exe /Change /monitor-timeout-ac 0
powercfg.exe /Change /monitor-timeout-dc 0

 

  1. powercfg.exe /Change /monitor-timeout-ac 0
    /Change: 특정 전원 설정을 변경합니다.
    /monitor-timeout-ac: AC 전원 상태(전원 어댑터에 연결된 상태)에서 모니터가 자동으로 꺼지기 전에 대기하는 시간을 설정합니다.
    0: 이 값은 모니터의 자동 꺼짐을 비활성화합니다. 즉, 전원 어댑터에 연결된 상태에서는 모니터가 자동으로 꺼지지 않고 계속 켜져 있게 됩니다.
    결과: 이 명령어는 시스템이 AC 전원에 연결되어 있을 때 모니터가 자동으로 꺼지지 않도록 설정합니다.

  2. powercfg.exe /Change /monitor-timeout-dc 0
    /Change: 특정 전원 설정을 변경합니다.
    /monitor-timeout-dc: DC 전원 상태(배터리로 동작하는 상태)에서 모니터가 자동으로 꺼지기 전에 대기하는 시간을 설정합니다.
    0: 이 값은 모니터의 자동 꺼짐을 비활성화합니다. 즉, 배터리로 작동하는 동안에도 모니터가 자동으로 꺼지지 않도록 설정합니다.
    결과: 이 명령어는 시스템이 배터리로 작동하고 있을 때 모니터가 자동으로 꺼지지 않도록 설정합니다.

 

반응형

배치 파일 스크립트 (Windows Batch Script Example)

윈도우10 시작 > Windows 설정 > 시스템 > 전원 및 절전 > 추가 전원 설정
제어판 > 하드웨어 및 소리 > 전원 옵션 > 디스플레이를 끄는 시간 설정 > 전원 관리 옵션 설정 편집

   >>  디스플레이 끄기 : 해당 없음  (Never)

@echo off

REM Windows 10 Setting the time to turn off the display
powercfg.exe /Change /monitor-timeout-ac 0
powercfg.exe /Change /monitor-timeout-dc 0

pause
exit

 

배치 파일 (Batch File) 만들기

  • 메모장 또는 다른 텍스트 편집기를 엽니다.
  • 위의 코드를 복사하여 텍스트 편집기에 붙여넣습니다.
  • 파일을 저장합니다. 예를 들어, Windows_Settings.bat 로 저장합니다. 파일 확장자는 .bat로 지정해야 합니다.
  • 배치 파일을 관리자 권한으로 실행합니다. (배치 파일을 우클릭한 후 "관리자 권한으로 실행"을 선택합니다.)

배치 파일 테스트 영상 (Batch file tested video) 

영상보기 : https://youtu.be/j6ME_VHNStE

 

윈도우 설정 참고 사이트 URL (Reference site URL for Windows settings)

How to Change Turn Off Display After Time in Windows 10

https://www.tenforums.com/tutorials/22691-change-turn-off-display-after-time-windows-10-a.html

(Plugged in)
powercfg -change -monitor-timeout-ac <minutes>
OR
powercfg /SETACVALUEINDEX SCHEME_CURRENT 7516b95f-f776-4464-8c53-06167f40cc99 3c0bc021-c8a8-4e07-a973-6b14cbcb2b7e <seconds>

Substitute <minutes> in the commands above with how many minutes you want to turn off display after.
Substitute <seconds> in the commands above with how many seconds you want to turn off display after.
Using 0 (zero) minutes or seconds will be the same as "Never".

 

마이크로소프트 지원 URL (Link to Microsoft Support Web Page)

Powercfg command-line options

https://learn.microsoft.com/en-us/windows-hardware/design/device-experiences/powercfg-command-line-options

 

Powercfg command-line options

You can use the powercfg.exe tool to control power schemes (also named power plans) to use the available sleep states, to control the power states of individual devices, and to analyze the system for common energy-efficiency and battery-life problems.

learn.microsoft.com

 

 

- E N D -

 

www.youtube.com/@XTRM

 

소프트엑스 XTRM

SOFTware unknown X of XTRM 컴퓨터 유지보수 기술 공유 채널입니다.

www.youtube.com

 

<소프트엑스 XTRM 추천영상>

^^*

반응형

댓글