I am unable to create app registration

Kotamraju, Rushi 20 Reputation points
2024-02-21T02:18:05.66+00:00

i used my college mail id to create azure account for learning purpose ! i tried to open app registration but im getting this permission issue - You do not have access Your administrator has disabled the App registrations experience in the Azure portal. You can still register or manage applications using PowerShell or another client such as Visual Studio.

Microsoft Entra ID
Microsoft Entra ID
A Microsoft Entra identity service that provides identity management and access control capabilities. Replaces Azure Active Directory.
21,362 questions
{count} votes

2 answers

Sort by: Most helpful
  1. Shweta Mathur 29,741 Reputation points Microsoft Employee
    2024-02-26T06:52:02.3+00:00

    Hi @Kotamraju, Rushi

    Thanks for reaching out.

    The Azure account must be at least a Cloud Application Administrator to create application in Microsoft Entra ID.

    https://learn.microsoft.com/en-us/entra/identity-platform/quickstart-register-app#prerequisites

    Hope this will help.

    Thanks,

    Shweta

    Please remember to "Accept Answer" if answer helped you.

    1 person found this answer helpful.
    0 comments No comments

  2. Dr. S. Gomathi 670 Reputation points MVP
    2024-02-21T03:19:43.45+00:00

    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.

    1. 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.


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.