PowerShell – Get the list of all connectors used by each Power Apps application
The PowerShell script will list all connectors used in the Power Apps application in all environments user has access to. # Required Modules (installed as admin) # Install-Module -Name Microsoft.PowerApps.Administration.PowerShell # Install-Module -Name Microsoft.PowerApps.PowerShell -AllowClobber # $Delimiter = “,” # Get list of all Environments $Environments = Get-PowerAppEnvironment | Select-Object -Property EnvironmentName, DisplayName write-host $Environments # Loop …
PowerShell – Get the list of all connectors used by each Power Apps application Read More »