카테고리 없음

MS defender에 제외경로 추가하기

bitcoder 2022. 6. 9. 08:51
728x90

 

제외항목을 추가하려면 다음과 같은 명령을 사용합니다.

powershell -Command Add-MpPreference -ExclusionPath "C:\myapp"
powershell -Command Add-MpPreference -ExclusionProcess "myapp.exe"
powershell -Command Add-MpPreference -ExclusionExtension ".myext"

 

제외항목을 삭제하려면 다음과 같은 명령을 사용합니다.

powershell -Command Remove-MpPreference -ExclusionPath "C:\myapp"
powershell -Command Remove-MpPreference -ExclusionProcess "myapp.exe"
powershell -Command Remove-MpPreference -ExclusionExtension ".myext"


다음은 관리자권한으로 실행한 powershell에서 제외경로를 추가하는 화면입니다.

powershell 명령으로 제외경로 추가

 

다음은 제외경로가 추가된 Microsoft Defender의 정보 화면입니다.

제외경로가 추가된 Microsoft Defender 정보 화면

728x90