Enterprise Vault™ 为 SMTP 归档设置 Exchange Server 和 Office 365
在组织中禁用日记报告解密
默认情况下,已在组织中启用日记报告解密。因此,附加到日记报告的受保护电子邮件的解密副本将发送到 Enterprise Vault SMTP 服务。由于 Enterprise Vault 现在可以解密受 Microsoft Purview Information Protection (MPIP) 保护的电子邮件以预览 Discovery Accelerator 中的项目,因此不需要发送已附加到日记报告的受保护电子邮件的解密副本。
使用 Get-IRMConfiguration cmdlet 验证组织中日记报告解密的 Information Rights Management (IRM) 配置设置。有关更多信息,请参见 Get-IRMConfiguration。
如果在 IRM 设置上启用了日记报告解密,请运行以下命令将其禁用:
Set-IRMConfiguration -JournalReportDecryptionEnabled $false
有关更多信息,请参见 Set-IRMConfiguration。
以下 PowerShell 命令可由 Exchange 管理员或 Office 365 管理员执行:
:
#Retrieve the Information Rights Management (IRM) configuration in your organization.
Set-ExecutionPolicy RemoteSigned
$Cred = Get-Credential
$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri
https://ps.outlook.com/powershell/ -Credential $Cred -Authentication Basic –AllowRedirection
Import-PSSession $Session
Get-IRMConfiguration
:
#Test Information Rights Management (IRM) configuration and functionality.
Test-IRMConfiguration -Sender '<sender email adress>'
:
#Disable decryption of journal report in your organization
Set-IRMConfiguration -JournalReportDecryptionEnabled $false