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 […]
Archive | Power Apps
Power Apps Save Combo Box with Office 365 Users to SharePoint List’s Person Data
This is a quick post showing how to save Office 365 Users data from the combo box to a SharePoint list. It shows two combo boxes with Office 365 Users – one allowing only one selection, another allows multiple. The former will save to the SharePoint column with the Person data type, the latter to […]