Skip to content

Instantly share code, notes, and snippets.

@jcallaghan
Created July 15, 2020 12:54
Show Gist options
  • Save jcallaghan/4c7b98e8d743b2496f2196985678e3c6 to your computer and use it in GitHub Desktop.
Save jcallaghan/4c7b98e8d743b2496f2196985678e3c6 to your computer and use it in GitHub Desktop.
Add-PowerAppsAccount
Get-AdminPowerAppEnvironment
#Get-AdminPowerAppConnection | Where-Object {$_.ConnectionName -like "shared-sharepointonl*" -and $_.DisplayName -notlike "*tenantname*" }| format-table ConnectionName, DisplayName
Get-AdminPowerAppConnection| Select-Object * | Where-Object {$_.ConnectionName -like "shared-sharepointonl*" } | Export-Csv .\FlowConnections.csv -NoTypeInformation
Get-AdminPowerAppConnection| Select-Object * | Export-Csv .\FlowConnections.csv -NoTypeInformation
<#
$output = @()
$output += '"ConnectionName","ConnectionId","FullConnectorName","ConnectorName","DisplayName","CreatedTime","CreatedBy","LastModifiedTime","EnvironmentName","Statuses","Internal"'
Get-AdminPowerAppConnection | foreach-object{
$output += $_.ConnectionName
}Export-Csv .\FlowConnections.csv -NoTypeInformation
#>
Get-AdminPowerApp
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment