Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now

Reply
UncleLewis
Responsive Resident
Responsive Resident

Powershell Script List Users In Power BI Workspaces

Hi all,

 

Trying to use a Powershell script to output a csv file of all users in each workspace.

 

I found a PS script and it creates a csv file, but the file contains 3 weird characters in cell A1.

I checked a workspace and I see 65 users.

Any ideas here:

Thanks,

-w

 

Connect-PowerBIServiceAccount

$Workspaces = Get-PowerBIWorkspace -All 

$Workspaces | 
    ForEach-Object {
        $Workspace = $_.name
        foreach ($User in $_.Users) {
            [PSCustomObject]@{
                Workspace = $Workspace
                User      = $User.UserPrincipalName
            }
        }
    } | Export-CSV "C:\\PowerBIGroupMembers.csv" -NoTypeInformation -Encoding UTF8
1 ACCEPTED SOLUTION
lbendlin
Super User
Super User

Use 

Invoke-PowerBIRestMethod -Url "groups/$wsid/users" -Method Get

instead

View solution in original post

3 REPLIES 3
sarava0483
Frequent Visitor

This is very helpfull, can you also suggest on directly uploading the CSV file to sharepoint /onedrive folder.

Same piping as above.

lbendlin
Super User
Super User

Use 

Invoke-PowerBIRestMethod -Url "groups/$wsid/users" -Method Get

instead

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.