This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
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
Solved! Go to Solution.
Use
Invoke-PowerBIRestMethod -Url "groups/$wsid/users" -Method Get
instead
This is very helpfull, can you also suggest on directly uploading the CSV file to sharepoint /onedrive folder.
Same piping as above.
Use
Invoke-PowerBIRestMethod -Url "groups/$wsid/users" -Method Get
instead
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 8 | |
| 8 | |
| 8 | |
| 8 | |
| 7 |
| User | Count |
|---|---|
| 21 | |
| 21 | |
| 18 | |
| 16 | |
| 13 |