Search Suggest

Azure Restore deleted web app


Azure Restore deleted web app


Issue:
·       I deleted my web app, how to restore it?
·       Can I undo my delete web app operation?

Solution:

Good news!

Azure has launched the feature which can help you to restore the deleted web app but it can undelete the site which is deleted in last 30 days.

You can restore the content and configuration both.

Using Power Shell
-------------------------------------------------
·       Get the deleted site info,

Get-AzDeletedWebApp -Name "deleted site name"

·       Next you can restore it,

Restore-AzDeletedWebApp -ResourceGroupName "RG Name" -Name "deleted site name" -TargetAppServicePlanName "ASP Name"
-------------------------------------------------
You can also use Azure CLI.

Ref: 


Post a Comment