윈도우11 디펜더 실시간 감시 기능 예외 설정 방법
1. 폴더 예외 등록
powershell -Command "Add-MpPreference -ExclusionPath '폴더경로'"
ex) powershell -Command "Add-MpPreference -ExclusionPath 'C:\MyApp'"
2. 파일 예외 등록
powershell -Command "Add-MpPreference -ExclusionProcess '파일경로'"
ex) powershell -Command "Add-MpPreference -ExclusionProcess 'C:\Program Files\MyApp\app.exe'"
3. 프로세스 예외 등록
powershell -Command "Add-MpPreference -ExclusionProcess '프로세스명'"
ex) powershell -Command "Add-MpPreference -ExclusionProcess 'app.exe'"
4. 파일 확장자 예외 등록
powershell -Command "Add-MpPreference -ExclusionExtension '확장자명'"
ex) powershell -Command "Add-MpPreference -ExclusionExtension '.log'"
5. 등록된 예외 확인
powershell -Command "Get-MpPreference | Select-Object -ExpandProperty ExclusionPath"
공개 마지막 업데이트: 2025-10-01 05:49:56 AM