Skip to content

Instantly share code, notes, and snippets.

@rheid
Created January 21, 2025 21:24
Show Gist options
  • Save rheid/68a8167a1a1885ebb2e5b52f2883498e to your computer and use it in GitHub Desktop.
Save rheid/68a8167a1a1885ebb2e5b52f2883498e to your computer and use it in GitHub Desktop.
Remove disableFlowRunResubmission on PowerPlatform PowerAutomate
Replace <Tenant_ID> with your tenant ID and authenticate by using this:
Add-PowerAppsAccount -Endpoint "prod" -TenantID <Tenant_ID>2)
Disable the new setting by running this:
$tenantSettings = Get-TenantSettings
$tenantSettings.powerPlatform.powerAutomate
$tenantSettings.powerPlatform.powerAutomate.disableFlowRunResubmission= $False
Set-TenantSettings -RequestBody $tenantSettings
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment