Services
Microsoft Power Automate
Details
How does this affect me?
By default, this feature will disable the ability for users to resubmit flow runs that were initialized using an instant trigger unless the new setting is enabled. If no action is taken, users will be unable to resubmit flows that were previously initialized using an instant trigger.
What do I need to do to prepare?
This message is for awareness and no action is required. If you want to enable flow run resubmissions for cloud flows that were initialized by instant triggers, admins can follow the steps below:
- Sign in to your tenant account.
PowerShell: Add-PowerAppsAccount -Endpoint "prod" -TenantID <Tenant_ID> - Retrieve and store your tenant settings in TenantSettings.
PowerShell: $tenantSettings = Get-TenantSettings - Set the powerPlatform.powerAutomate.disableFlowRunResubmission flag to False, to allow flow run resubmissions for cloud flows initialized by instant triggers.
Powershell: tenantSettings.powerPlatform.powerAutomate.disableFlowRunResubmission= $False
Set-TenantSettings -RequestBody $tenantSettings