Share via

Unable to delete managed application

Amit Modi 0 Reputation points Microsoft Employee
2026-05-18T05:22:17.8533333+00:00

Unable to delete managed application, clicking on delete button does nothing

Azure Managed Applications
Azure Managed Applications

An Azure service that enables managed service providers, independent software vendors, and enterprise IT teams to deliver turnkey solutions through the Azure Marketplace or service catalog.


1 answer

Sort by: Most helpful
  1. Q&A Assist
    2026-05-18T05:22:29.16+00:00
    AI generated content. This question contains an answer created with AI from Q&A Assist. Learn more

    Use Azure CLI to delete the managed application directly instead of relying on the portal Delete button.

    For a regular Azure Managed Application, run:

    az managedapp delete \
      --name <managed-app-name> \
      --resource-group <resource-group-name>
    

    Alternatively, if the managed application is a Service Fabric managed application, use:

    az sf managed-application delete \
      --application-name <app-name> \
      --cluster-name <cluster-name> \
      --resource-group <resource-group-name>
    

    If the delete still appears to do nothing, verify:

    1. The name, resource group, and (for Service Fabric) cluster name are correct.
    2. The signed-in identity has sufficient permissions on the subscription/resource group.
    3. No policy or lock is blocking deletion (check resource group and subscription locks in the portal).

    Once the CLI command completes successfully, the managed application will be removed even if the portal Delete button was unresponsive.


    References:

    Was this answer helpful?

Your answer

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