Restore deleted flows

Important

This content is archived and is not being updated. For the latest documentation, go to What's new in Power Automate?. For the latest release plans, go to Dynamics 365 and Microsoft Power Platform release plans.

Enabled for Public preview Early access General availability
Admins, makers, marketers, or analysts, automatically - - May 5, 2022

Business value

Customers don't need to file a support ticket and wait days to restore a deleted flow.

Feature details

With this feature, if you deleted a non-solution-aware flow from an environment within the last 28 days, your admins can use the PowerApps administration cmdlets in PowerShell to recover the deleted flows. Follow these steps to recover your deleted flows:

  1. Install and authenticate the cmdlets.
  2. Get the flowName of the deleted flow with the Get-AdminFlow command.
      Get-AdminFlow -EnvironmentName <EnvName> -IncludeDeleted $true
    
  3. Restore the flow with the Restore-AdminFlow command.
     Restore-AdminFlow -EnvironmentName <EnvName> -FlowName <FlowName>
     		```
    

See also

Restore deleted flows with PowerShell (docs)