An Azure service that is used to control and help secure email, documents, and sensitive data that are shared outside the company.
Hi Deborah Alexander,
you can get Azure Rights Management (RMS) encrypting your outgoing attachments in a few steps:
- Make sure you have the right subscription/license • You need a Microsoft 365 plan or Purview Information Protection subscription that includes Azure RMS. • Confirm you’ve got the “Information Protection” service in your subscription.
- Activate the Rights Management service a. In the Azure portal go to Azure Information Protection > Overview > Activate b. Or use PowerShell:
```powershell
Install-Module AzureInformationProtection
Enable-AipService
```
c. Wait a few minutes for the service to fully provision.
- Create or update a protection policy/label a. Still in Azure Information Protection, switch to the Labels blade. b. Either edit an existing label or create a new one. Under Protection settings, turn on Encrypt, choose who can access (e.g., “Recipients”), and set their rights (e.g., “View,” “Edit”). c. Save and publish your policy so it flows down to users.
- Deploy the client to your endpoints • Download and install the Microsoft Purview Information Protection (unified labeling) client on your users’ machines. • This gives Outlook, Word, etc. the ability to automatically apply the labels you created.
- (Optional) Automate encryption on all outgoing mail via Exchange transport rules If you want every attachment to be encrypted automatically (without users having to pick a label): a. In the Microsoft 365 admin center open the Exchange Admin Center b. Go to Mail flow > Rules > + > Apply rights protection to messages c. Set the conditions you want (e.g., “If the message has an attachment”) and pick your RMS template from the Rights protection dropdown. d. Save the rule. Now any mail that matches will be encrypted by Azure RMS.
That’s it – after that, when users send emails with attachments, Azure RMS will apply your encryption template, keeping your files secure in transit and at rest.
References
- Activate Azure Rights Management service https://learn.microsoft.com/azure/information-protection/deploy-use/activate-azure
- Create and publish Azure Information Protection labels https://learn.microsoft.com/azure/information-protection/how-to-guides
- Admin guide: Azure Information Protection client and logging https://docs.microsoft.com/azure/information-protection/rms-client/clientv2-admin-guide-files-and-logging
- Using PowerShell with the Information Protection client https://docs.microsoft.com/azure/information-protection/rms-client/clientv2-admin-guide-powershell
- Set up IRM in SharePoint (for protecting libraries) https://learn.microsoft.com/purview/set-up-irm-in-sp-admin-center
- Learn about the Azure Rights Management encryption service https://learn.microsoft.com/purview/azure-rights-management-learn-about
Hope this helps. If you have any follow-up questions, please let me know. I would be happy to help.