윈 도 우 대기 모드에서 컴퓨터를 깨울 수 있는 장치를 확인 bat 파일
2025.01.12 10:36
대기 모드에서 컴퓨터를 깨울 수 있는 장치를 확인 bat 파일
windows10 절전모드에서 로컬ip내 장치에서 pc깨우기 설정 / 로컬장비에서 절전모드 깨우기
마우스 + 키보드 절전 깨우기 제거하기
==============
자동화 구성
==============
✅ 최종 수정된 스크립트:
bat
코드 복사
@echo off
title Power Management Check
color 0a
chcp 65001 >nul
echo Starting Power Management Check Script...
echo.
:top
echo Checking devices that can wake the computer from sleep mode...
echo 대기 모드에서 컴퓨터를 깨울 수 있는 장치를 확인하는 중입니다...
echo ----------------------------------------
powercfg -devicequery wake_armed
echo ----------------------------------------
echo [Instruction] Please disable the wake-up option for the listed devices:
echo [안내] 아래 나열된 장치에 대해 대기 모드 해제 옵션을 비활성화하세요.
echo [1] Open "Device Manager" and select the device.
echo [1] "장치 관리자"를 열고 해당 장치를 선택하세요.
echo [2] Go to the "Power Management" tab.
echo [2] "전원 관리" 탭으로 이동하세요.
echo [3] Uncheck "Allow this device to wake the computer."
echo [3] "이 장치를 사용하여 컴퓨터의 대기 모드를 종료할 수 있음"의 체크를 해제하세요.
echo.
echo Opening Device Manager...
start "" devmgmt.msc
echo Press any key to recheck the devices...
pause
goto top
???? 변경된 부분:
영어 메시지: Checking devices that can wake the computer from sleep mode...
한글 번역 추가: 대기 모드에서 컴퓨터를 깨울 수 있는 장치를 확인하는 중입니다...
???? 스크립트 실행 시 출력 예시:
csharp
코드 복사
Checking devices that can wake the computer from sleep mode...
대기 모드에서 컴퓨터를 깨울 수 있는 장치를 확인하는 중입니다...
----------------------------------------
<Wake-up capable devices list>
[Instruction] Please disable the wake-up option for the listed devices:
[안내] 아래 나열된 장치에 대해 대기 모드 해제 옵션을 비활성화하세요.
[1] Open "Device Manager" and select the device.
[1] "장치 관리자"를 열고 해당 장치를 선택하세요.
[2] Go to the "Power Management" tab.
[2] "전원 관리" 탭으로 이동하세요.
[3] Uncheck "Allow this device to wake the computer."
[3] "이 장치를 사용하여 컴퓨터의 대기 모드를 종료할 수 있음"의 체크를 해제하세요.
Opening Device Manager...
이제 영어와 한글이 동시에 출력되며, 명확한 안내를 제공합니다. ????
===========
소스
============
@echo off
title Power Management Check
color 0a
chcp 65001 >nul
echo Starting Power Management Check Script...
echo.
:top
echo Checking devices that can wake the computer from sleep mode...
echo 대기 모드에서 컴퓨터를 깨울 수 있는 장치를 확인하는 중입니다...
echo ----------------------------------------
powercfg -devicequery wake_armed
echo ----------------------------------------
echo [Instruction] Please disable the wake-up option for the listed devices:
echo [안내] 아래 나열된 장치에 대해 대기 모드 해제 옵션을 비활성화하세요.
echo [1] Open "Device Manager" and select the device.
echo [1] "장치 관리자"를 열고 해당 장치를 선택하세요.
echo [2] Go to the "Power Management" tab.
echo [2] "전원 관리" 탭으로 이동하세요.
echo [3] Uncheck "Allow this device to wake the computer."
echo [3] "이 장치를 사용하여 컴퓨터의 대기 모드를 종료할 수 있음"의 체크를 해제하세요.
echo.
echo Opening Device Manager...
start "" devmgmt.msc
echo Press any key to recheck the devices...
pause
goto top
============
실행
해당기기 수정
수고하셨습니다