Created
September 1, 2022 21:09
-
-
Save paulczy/9b9d1e292a3546c7e7b53ef1c079d52f to your computer and use it in GitHub Desktop.
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
# Login to PowerApps for the Admin commands | |
Write-Host "Installing Module Microsoft.PowerApps.Administration.PowerShell" | |
Install-Module Microsoft.PowerApps.Administration.PowerShell -Force -Scope CurrentUser | |
Write-Host "Listing Power App environments..." | |
Get-AdminPowerAppEnvironment | Format-Table -Property EnvironmentName, DisplayName, Location | |
Write-Host "Listing Power App environments..." | |
Get-AdminFlow | Format-Table -Property DisplayName, Enabled, FlowName, EnvironmentName | |
Write-Host "...DONE" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment