If you are facing issues creating an app registration in Azure and you see the message "Your administrator has disabled the App registrations experience in the Azure portal," it indicates that your account doesn't have the necessary permissions to perform this action through the Azure portal. Here are steps you can take to address the issue:
Check Permissions: Ensure that your account has the required permissions to create app registrations. You might need to be assigned the "Application Developer" or similar role in Azure AD. Contact your Azure administrator or IT support to request the necessary permissions.
- Use PowerShell: As suggested in the message, you can use PowerShell to create or manage app registrations. Open PowerShell, install and import the AzureAD module (if not already done), and then run the necessary commands to create the app registration. Here's a basic example:
# Install AzureAD module (if not already installed)
Install-Module -Name Az -AllowClobber -Force -Scope CurrentUser
# Import the module
Import-Module Az
# Connect to Azure AD
Connect-AzAccount
# Create the app registration
$app = New-AzADApplication -DisplayName "YourAppName" -IdentifierUris "https://YourAppName"
# Create a service principal
$sp = New-AzADServicePrincipal -ApplicationId $app.ApplicationId
# Assign a role (if needed)
New-AzRoleAssignment -RoleDefinitionName Contributor -ServicePrincipalName $sp.ApplicationId
Make sure to replace "YourAppName" and "https://YourAppName" with your desired values.
If the answer helped, or pointed you in the right direction, please click accept answer or please share more information to help you better.