简体   繁体   English

报表 GUID 中的 Power BI 工作区名称

[英]Power BI Workspace name from report GUID

I have a report GUID for one report & I want to find out the workspace it originated from.我有一份报告的报告 GUID,我想找出它的来源工作区。 I am using Powershell & from their using Get-PowerBIReport cmdlet & I am able to get certain information like dataset id, embed url but not anything specific to workspace.我正在使用 Powershell 并从他们使用 Get-PowerBIReport cmdlet 中获得某些信息,例如数据集 ID,嵌入 url 但不是任何特定于工作区的信息。 Does anybody have any idea on this.有没有人对此有任何想法。

Thanks in advance.提前致谢。

You can get the workspaces, and then get all the Datasets in each one.您可以获取工作区,然后获取每个工作区中的所有数据集。 eg例如

foreach ($ws in Get-PowerBIGroup -All)
{
    foreach ($ds in get-powerbidataset -Workspace $ws  )
    {
        write-host "Workspace $($ws.Id), Dataset $($ds.Id)"
    }
} 

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 自动化Power BI报表/仪表板部署 - Automate Power BI Report/Dashboard Deployments 自动将数据从Power Bi导出到Excel - Automating export of data from Power Bi to Excel 通过 REST API 在 Power BI 报表服务器上设置报表数据源和凭据以建立计划刷新 - Set report data source and credentials on Power BI Report Server through REST API to establish a scheduled refresh 能否将 Power BI 报表服务器报表的结果用作 C#、Python 或 PowerShell 程序中的数据源? - Can you use the results of a Power BI Report Server report as a data source in a C#, Python or PowerShell program? 如何使用Power BI Rest API从Power BI应用程序检索所有用户的列表? - How to retrieve a list of all users from a Power BI app using the Power BI Rest API? 来自 Cassandra 数据库的 Power BI 上的实时数据流 - Real-Time data streaming on Power BI from Cassandra database 从 Azure 托管实例刷新 Power BI 数据 - Power BI Data Refresh from Azure Managed Instance 使用PowerShell刷新Power BI - Refresh Power BI with PowerShell Power Bi 订阅 - Power Bi subscriptions 使用 Power shell 登录到 Power BI 会引发错误“System.Net.WebException:无法解析远程名称:'localhost.fiddler'” - Login to Power BI with Power shell throws error “System.Net.WebException: The remote name could not be resolved: 'localhost.fiddler'”
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM