1
고성능 옵션 추천 - 윈도우 디펜드 off + 전원고성능 + 모니터 끄기 / 절전기능 / 하드디스크 끄기 미사용

고성능 옵션 추천 - 윈도우 디펜드 off + 전원고성능 + 모니터 끄기 / 절전기능 / 하드디스크 끄기 미사용

 

@echo off
chcp 949 >nul
title Windows Server 2022 Optimization Tool
echo [1/3] Microsoft Defender 비활성화 시도...

:: 변조 보호가 꺼져 있어야 작동합니다.
powershell -Command "Set-MpPreference -DisableRealtimeMonitoring $true" 2>nul
powershell -Command "Set-MpPreference -DisableBehaviorMonitoring $true" 2>nul
powershell -Command "Set-MpPreference -DisableBlockAtFirstSeen $true" 2>nul
powershell -Command "Set-MpPreference -DisableIOAVProtection $true" 2>nul

:: 레지스트리 강제 주입
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows Defender" /v "DisableAntiSpyware" /t REG_DWORD /d 1 /f >nul 2>&1
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows Defender\Real-Time Protection" /v "DisableRealtimeMonitoring" /t REG_DWORD /d 1 /f >nul 2>&1

echo [2/3] 전원 관리: '고성능'으로 변경 중...
powercfg /setactive 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c >nul 2>&1
if %errorlevel% neq 0 (
    powercfg /s SCHEME_MIN >nul 2>&1
)

echo [3/3] 모니터/절전/하드디스크 제어 설정 중...
:: 모니터/절전/하드 끄기 모두 안 함(0)
powercfg /change monitor-timeout-ac 0
powercfg /change standby-timeout-ac 0
powercfg /change disk-timeout-ac 0
powercfg -h off >nul 2>&1

이 게시물을

공유하기

번호
제목
조회 수

SEARCH