提取PowerBI Workspace版本

时间:2019-05-15 15:35:29

标签: powershell powerbi

我试图提取用户可以访问的所有工作区以及这些工作区的版本(旧的或新的工作区)。

使用以下代码,我可以提取有关名称(如果有),专用容量的信息...但是所有工作空间的所有属性类型的值均为$ null。

$password = 'XXXX' | ConvertTo-SecureString -asPlainText -Force
$username = "YYYYY" 

$credential = New-Object System.Management.Automation.PSCredential($username, $password)

Connect-PowerBIServiceAccount -Credential $credential

$Session = New-PSSession -ConfigurationName Microsoft.Exchange `
    -ConnectionUri https://outlook.office365.com/powershell-liveid/ `
    -Credential $credential `
    -Authentication Basic `
    -AllowRedirection

Import-PSSession $Session

$Workspaces = Get-PowerBIWorkspace -All

根据this link from Microsoft Power BI Blog,这些字段值必须为(PersonalGroup,Group或Workspace)。

为什么我所有工作空间的此参数均为$ null?

谢谢

0 个答案:

没有答案