<< A B C D E F G H I J K L M N O P Q R S T U V W X Y Z

–A–

admin, make a user a Power BI admin

Add-AzureADDirectoryRoleMember -ObjectId (Get-AzureADDirectoryRole | ? {$_.DisplayName -eq "Power BI Administrator"}).ObjectID -RefObjectId (Get-AzureADUser -ObjectId "napoleon@dynamite.com").ObjectId

–B–

–C–

connect

this will ask for ID but not creds if you're already logged in somewhere:

Connect-PowerBIServiceAccount

–D–

datasets

Get-PowerBIDataset | ft

unfortunately, this lists only the datasets which user who is logged on can access. We probably want something more like:

Get-PowerBIDataset -All -Scope Organization | sort name | ft

–E–

–F–

–G–

–H–

–I–

–J–

–K–

–L–

–M–

module required

need to install this module:

Install-Module -Name MicrosoftPowerBIMgmt

–N–

–O–

–P–

–Q–

–R–

–S–

–T–

–U–

–V–

–W–

workspaces

Get-PowerBIWorkspace | ft

unfortunately, this lists only the workspaces which user who is logged on can access. We probably want something more like:

Get-PowerBIWorkspace -All -Scope Organization | sort name | ft

–X–

–Y–

–Z–