Technet has some good guides on enabling Azure Rights Management so you can enable email Encryption on Office 365 (https://technet.microsoft.com/en-us/library/dn569286.aspx) however they seem to be a bit out of date with some of the powershell bits.
Here’s the bits you need to connect to 365 via Azure Powershell if you’re in Europe (in Order)
1) $UserCredential = Get-Credential
2) $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $UserCredential -Authentication Basic -AllowRedirection
3) Import-PSSession $Session
4) Set-IRMConfiguration -RMSOnlineKeySharingLocation “https://sp-rms.eu.aadrm.com/TenantManagement/ServicePartner.svc”
5) Import-RMSTrustedPublishingDomain -RMSOnline -name “RMS Online”
6) Set-IRMConfiguration -InternalLicensingEnabled $true
Simon Treadaway
Latest posts by Simon Treadaway (see all)
- Add replicas on Exchange 2010 Public Folders - 25/08/2016
- Remove all aliases for a domain in Office 365 - 24/08/2016
- Installing Exchange 2010 SP3 Rollups on Server 2012 - 12/07/2016