This file contains hidden or 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
| # Install the PowerBI module | |
| # Install-Module -Name MicrosoftPowerBIMgmt | |
| # Import the PowerBI module | |
| Import-Module MicrosoftPowerBIMgmt | |
| # Login to Power BI | |
| Login-PowerBI | |
| # Connect to Power BI (Optional -UserName "[email protected]") |
This file contains hidden or 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
| alias: 'Family - James - Track Medicine' | |
| id: '4df574c4-bb48-4108-b679-76a47966af92' | |
| description: 'Track medicine and order more when low.' | |
| initial_state: true | |
| mode: 'single' | |
| max_exceeded: silent | |
| trigger: | |
| # Let's keep this simple and assume the medicine was taken each day. |
This file contains hidden or 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
| alias: 'Remote - Next scene' | |
| id: '6999bb6f-2240-4351-8713-9b5ff51ae34d' | |
| description: '' | |
| initial_state: true | |
| # mode: queued | |
| trigger: | |
| - platform: device | |
| domain: zha |
This file contains hidden or 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
| 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 | |
This file contains hidden or 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
| Install-Module -Name Microsoft.PowerApps.Administration.PowerShell | |
| Install-Module -Name Microsoft.PowerApps.PowerShell -AllowClobber | |
| # This call opens prompt to collect credentials (Azure Active Directory account and password) used by the commands | |
| Add-PowerAppsAccount | |
| # Here is how you can pass in credentials (avoiding opening a prompt) | |
| $pass = ConvertTo-SecureString "password" -AsPlainText -Force | |
| Add-PowerAppsAccount -Username [email protected] -Password $pass |
NewerOlder