Restore deleted flows
Enabled for | Public preview | Early access | General availability |
---|---|---|---|
Admins, makers, marketers, or analysts, automatically | - | - | ![]() |
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:
- Install and authenticate the cmdlets.
- Get the flowName of the deleted flow with the Get-AdminFlow command.
Get-AdminFlow -EnvironmentName <EnvName> -IncludeDeleted $true
- Restore the flow with the Restore-AdminFlow command.
Restore-AdminFlow -EnvironmentName <EnvName> -FlowName <FlowName> ```