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

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: 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= $FalseSet-TenantSettings -RequestBody $tenantSettings If you are not familiar with running PowerShell commands for your tenant, refer to the PowerShell support for Power Automate documentation Message ID: MC975979
The post Power Automate – New admin tenant setting for resubmitting Power Automate flow runs appeared first on M365 Admin.
Published on:
Learn moreRelated posts
Track Time and Cost Savings with Power Automate’s New “Savings” (Preview) Feature
While creating a Power Automate flow, I discovered an exciting new feature called the “Savings” (Preview) feature in Power Automate. When I tr...
Power Automate: Running PowerShell Scripts
Many things can be done in Power Automate or using Microsoft Graph, but not everything. For certain things, Microsoft requires us to use Power...
Microsoft Power Automate – Testing framework for desktop flows
We are announcing a testing framework for desktop flows in Microsoft Power Automate for desktop. This feature will reach general availability ...
Run Power Automate From Command Button
Requirement Modern business applications demand automation, whether it is a heavy data driven model drive app or light weight canvas app. Micr...
Favorite your Actions and Connectors for quick retrieval in Cloud Flows (Power Automate)
With this new update in Power Automate, it’s now easier for us to find and use the actions and connectors we need. We can also quickly access ...
How to update environment variables automatically with Power Automate
The other day, I cool question that I didn’t have the answer to, but got me super excited to find a solution. How can we … The po...
Power Automate: dayOfYear function
The “dayOfYear function” helps us determine which day of the year a specific date falls on. This might not be the first function t...
Power Automate: How to Get Your Flow’s Name
You might need to access your Flow’s name when building complex Flows for various reasons. You may create a custom logging system, want ...