MC975979 - Power Automate – New admin tenant setting for resubmitting Power Automate flow runs

Service

Microsoft Power Automate

Last Updated

Jan 29, 2025

Published Jan 9, 2025

Tag

New feature

More information

On January 13, 2025, Power Automate will introduce a new admin tenant setting to control the resubmission of flow runs initiated by instant triggers. This feature will be widely available across all regions by the end of January 2025.

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:
  1. Sign in to your tenant account.
    PowerShell: Add-PowerAppsAccount -Endpoint "prod" -TenantID <Tenant_ID>
  2. Retrieve and store your tenant settings in TenantSettings.
    PowerShell: $tenantSettings = Get-TenantSettings
  3. 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
If you are not familiar with running PowerShell commands for your tenant, refer to the PowerShell support for Power Automate documentation.