Unable to delete managed application

Amit Modi 40 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.


Answer accepted by question author
Ravi Varma Mudduluru 12,625 Reputation points Microsoft External Staff Moderator
2026-05-25T06:09:33.2766667+00:00

Hello @Amit Modi

Thank you for reaching out to Microsoft Q&A.

As discussed, the stuck operation has been released by the backend team, and you are now able to successfully delete the Managed Application and WAF resources.

Could you please "Accept Answer" if the information helped you. This will help us and others in the community as well.

Was this answer helpful?

1 person found this answer helpful.
0 comments No comments

1 additional answer

Sort by: Most helpful
  1. AI answer

    2026-05-18T05:22:29.16+00:00

    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:

    AI-generated content may be incorrect. Read our transparency notes for more information.

    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.