A unified data governance solution that helps manage, protect, and discover data across your organization
@Charley Dunn yes, this looks like an access issue. But I doubt this would be a role missing. What is the license you are using for the service and is it still active?
Also, try to check the Encryption side of things.
So, first confirm licensing being active and plan as well on the user you are using.
Install and use the powershell module AipService (Install-Module Aipservice)
Connect-AipService # To connect
Get-AipService # To see its status
Get-AipServiceConfiguration # To see its configurations
NOTE: Bear in mind that I am not suggesting for you to place the outputs here, only to confirm if the license is assigned, plan is active and service is enabled.
Than, see if there are any restrictions with:
Get-AipServiceOnboardingPolicy # You can have encryption settings restricted to groups or users
Finally, If all of this is in fact enabled, try to install exchange Online module and connect to it.
Install-Module ExchangeOnlineManagement; Connect-ExchangeOnline
Run
Get-IrmConfiguration
Here, the values InternalLicensingEnabled & AzureRmsLicensingEnabled should be true
The LicensingIntranetDistributionPointUrl from the AipConfiguration should match the LicensingLocation url on the IrmConfig
Now, like I mentioned, these are just to check configuration but if the license is missing, disabled or deprovisioned, this can likely be the main cause, which is what I am suspecting the most due to the error.
But try the above, one by one (including license and plan checks) and let us know the outcome