Skip to content

Instantly share code, notes, and snippets.

View rheid's full-sized avatar

Ralf Heid rheid

View GitHub Profile
@rheid
rheid / disableFlowRunResubmissio.ps1
Created January 21, 2025 21:24
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