powershell 将Service Fabric排除文件和路径添加到Windows Defender

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell 将Service Fabric排除文件和路径添加到Windows Defender相关的知识,希望对你有一定的参考价值。

param (
    [Parameter(Mandatory = $true)]
    [string] $FabricDataRoot,

    [Parameter(Mandatory = $true)]
    [string] $FabricLogRoot
)
$Preferences = Get-MpPreference
$ExclusionList = "$env:ProgramFiles\Microsoft Service Fabric",
                  $FabricDataRoot,
                  $FabricLogRoot,
                  "Fabric.exe",
                  "FabricHost.exe",
                  "FabricInstallerService.exe",
                  "FabricSetup.exe",
                  "FabricDeployer.exe",
                  "ImageBuilder.exe",
                  "FabricGateway.exe",
                  "FabricDCA.exe",
                  "FabricFAS.exe",
                  "FabricUOS.exe",
                  "FabricRM.exe",
                  "FileStoreService.exe"
Set-MpPreference -ExclusionPath $ExclusionList

以上是关于powershell 将Service Fabric排除文件和路径添加到Windows Defender的主要内容,如果未能解决你的问题,请参考以下文章

如何使用Powershell更新Service Fabric应用程序参数

powershell 通过PowerShell向Service Bus队列发送和接收消息

从 Powershell 部署 Service Fabric 应用程序,无需 Service Fabric SDK

使用PowerShell操作Windows服务的命令小结

powershell 使用Get-Service cmdlet重新启动Sql Server

powershell 从Tridion Sites Core Service获取所有应用程序ID