The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi,
I am using the cmdlet GET-PowerBIReport and I get the returned info for a report I am interested in, but how do I find the workspace that the report belongs to and how do I find the creator of the report?
Thanks
Solved! Go to Solution.
Thanks.
I ended up using this script, which gave me all the reports in all the workspaces - names included
Get-PowerBIWorkspace -Scope Organization -Include All -ALL | Out-file C:\filename.csv
workspace is equivalent to group. get the group id and then look that up in the audit data. There you get all the details including ownership etc.
Thanks.
I ended up using this script, which gave me all the reports in all the workspaces - names included
Get-PowerBIWorkspace -Scope Organization -Include All -ALL | Out-file C:\filename.csv