Enabling Email Encryption
Ensure Azure Rights Management is activated
If this is a new tenant, ARM is enabled by default. We can verify that it is enabled via the following link https://account.activedirectory.windowsazure.com/RmsOnline/Manage.aspx . Ensure hat you login to the aforementioned link with a Global Administrator account.
Validate tenant is setup to leverage Message Encrpytion
Run PowerShell as an administrator
Run the following commands
$UserCredential = Get-Credential
$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $UserCredential -Authentication Basic –AllowRedirection
Import-PSSession $Session -DisableNameChecking
After connecting to Exchange Online using PowerShell, run the following to confirm the tenant is setup to use OME.
Test-IRMConfiguration -Sender user@org.onmicrosoft.com
Last updated