Windows Defender 排除指定 文件夹、文件夹

由于Windows自带的杀毒软件偶尔会误删软件,在我们部署公司产品以后,经常会被破环,导致软件产品异常。

为避免这种情况,快速解决此类问题,可通过 powershell 环境,将产品目录添加到 Windows Defender 排除选项中。

打开 powershell (可以在 开始-->运行 中 执行 powershell),执行一下命令:

1、使用 PowerShell cmdlet 启用 Windows 上的 自动排除列表

Set-MpPreference -DisableAutoExclusions $False

2、排除指定路径 以及 路径下的所有 文件

Add-MpPreference -ExclusionPath "D:\AppPath"

3、排除指定 文件扩展名

Add-MpPreference -ExclusionExtension ".ExName"

4、排除 指定程序

Add-MpPreference -ExclusionProcess "D:\Program Files\AppPath\Project.exe"

排除指定文件 避免被 Windows Defender 扫描误删,容易出现安全隐患,请大家谨慎操作。

你可能感兴趣的:(Windows Defender 排除指定 文件夹、文件夹)