Microsoft 365 Backup - Enable Restore Portal
In order for the tenant Azure organisation to be able to login to the restore portal, Cloudist needs to be granted authentication privileges.
Â
Get Application Id from Portal
Login to the portal and navigate to the M365 Backup Service page.
Select the Restore Operators tab.
Click the Information button
Copy the Application Id displayed in the dialogue
Configure Azure Application
Open a PowerShell session and run the following code:
Install-Module AzureAD
Import-Module AzureAD'
Connect-AzureAD #Authorize with tenant admin credentials
New-AzureADServicePrincipal -AppId "<Application Id from Portal>"
Configure Application in Azure
Navigate to Azure Active Directory → Enterprise applications → Overview
Enter the Application ID from previous step into the search your tenant field.
Once it shows up, click on it.
Go to the Permissions tab. Click on the blue bar Grant admin consent for… and accept the dialogue that pops up.
Now the tenant will be able to logon to the Restore Portal.
Â