Created
January 21, 2025 21:24
-
-
Save rheid/68a8167a1a1885ebb2e5b52f2883498e to your computer and use it in GitHub Desktop.
Remove disableFlowRunResubmission on PowerPlatform PowerAutomate
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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