Created
February 29, 2020 14:23
-
-
Save janegilring/a96a577d1ebc8602044e060f7b8f548d to your computer and use it in GitHub Desktop.
Example on getting started with the Power BI PowerShell module
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
Install-Module -Name MicrosoftPowerBIMgmt -Scope CurrentUser | |
$Credential = Get-Credential | |
Connect-PowerBIServiceAccount -Credential $Credential | |
$Workspace = Get-PowerBIWorkspace -Name 'HR Data' | |
Get-PowerBIDataset -Workspace $Workspace | ft name,ConfiguredBy,IsRefreshable |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment